-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.go
366 lines (305 loc) · 8.83 KB
/
build.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
package common
import (
"errors"
"fmt"
"net/url"
"os"
"path"
"strconv"
"strings"
"time"
"github.com/Sirupsen/logrus"
"gitlab.com/gitlab-org/gitlab-ci-multi-runner/helpers"
)
type BuildState string
type GitStrategy int
const (
GitClone GitStrategy = iota
GitFetch
GitNone
)
const (
Pending BuildState = "pending"
Running = "running"
Failed = "failed"
Success = "success"
)
type Build struct {
GetBuildResponse `yaml:",inline"`
Trace BuildTrace
SystemInterrupt chan os.Signal `json:"-" yaml:"-"`
RootDir string `json:"-" yaml:"-"`
BuildDir string `json:"-" yaml:"-"`
CacheDir string `json:"-" yaml:"-"`
Hostname string `json:"-" yaml:"-"`
Runner *RunnerConfig `json:"runner"`
ExecutorData ExecutorData
// Unique ID for all running builds on this runner
RunnerID int `json:"runner_id"`
// Unique ID for all running builds on this runner and this project
ProjectRunnerID int `json:"project_runner_id"`
}
func (b *Build) Log() *logrus.Entry {
return b.Runner.Log().WithField("build", b.ID).WithField("project", b.ProjectID)
}
func (b *Build) ProjectUniqueName() string {
return fmt.Sprintf("runner-%s-project-%d-concurrent-%d",
b.Runner.ShortDescription(), b.ProjectID, b.ProjectRunnerID)
}
func (b *Build) ProjectSlug() (string, error) {
url, err := url.Parse(b.RepoURL)
if err != nil {
return "", err
}
if url.Host == "" {
return "", errors.New("only URI reference supported")
}
slug := url.Path
slug = strings.TrimSuffix(slug, ".git")
slug = path.Clean(slug)
if slug == "." {
return "", errors.New("invalid path")
}
if strings.Contains(slug, "..") {
return "", errors.New("it doesn't look like a valid path")
}
return slug, nil
}
func (b *Build) ProjectUniqueDir(sharedDir bool) string {
dir, err := b.ProjectSlug()
if err != nil {
dir = fmt.Sprintf("project-%d", b.ProjectID)
}
// for shared dirs path is constructed like this:
// <some-path>/runner-short-id/concurrent-id/group-name/project-name/
// ex.<some-path>/01234567/0/group/repo/
if sharedDir {
dir = path.Join(
fmt.Sprintf("%s", b.Runner.ShortDescription()),
fmt.Sprintf("%d", b.ProjectRunnerID),
dir,
)
}
return dir
}
func (b *Build) FullProjectDir() string {
return helpers.ToSlash(b.BuildDir)
}
func (b *Build) StartBuild(rootDir, cacheDir string, sharedDir bool) {
b.RootDir = rootDir
b.BuildDir = path.Join(rootDir, b.ProjectUniqueDir(sharedDir))
b.CacheDir = path.Join(cacheDir, b.ProjectUniqueDir(false))
}
func (b *Build) executeShellScript(scriptType ShellScriptType, executor Executor, abort chan interface{}) error {
shell := executor.Shell()
if shell == nil {
return errors.New("No shell defined")
}
script, err := GenerateShellScript(scriptType, *shell)
if err != nil {
return err
}
// Nothing to execute
if script == "" {
return nil
}
cmd := ExecutorCommand{
Script: script,
Abort: abort,
}
switch scriptType {
case ShellBuildScript, ShellAfterScript: // use custom build environment
cmd.Predefined = false
default: // all other stages use a predefined build environment
cmd.Predefined = true
}
return executor.Run(cmd)
}
func (b *Build) executeUploadArtifacts(state error, executor Executor, abort chan interface{}) (err error) {
when, _ := b.Options.GetString("artifacts", "when")
if state == nil {
// Previous stages were successful
if when == "" || when == "on_success" || when == "always" {
err = b.executeShellScript(ShellUploadArtifacts, executor, abort)
}
} else {
// Previous stage did fail
if when == "on_failure" || when == "always" {
err = b.executeShellScript(ShellUploadArtifacts, executor, abort)
}
}
// Use previous error if set
if state != nil {
err = state
}
return
}
func (b *Build) executeScript(executor Executor, abort chan interface{}) error {
// Execute pre script (git clone, cache restore, artifacts download)
err := b.executeShellScript(ShellPrepareScript, executor, abort)
if err == nil {
// Execute user build script (before_script + script)
err = b.executeShellScript(ShellBuildScript, executor, abort)
// Execute after script (after_script)
timeoutCh := make(chan interface{}, 1)
timeout := time.AfterFunc(time.Minute*5, func() {
close(timeoutCh)
})
b.executeShellScript(ShellAfterScript, executor, timeoutCh)
timeout.Stop()
}
// Execute post script (cache store, artifacts upload)
if err == nil {
err = b.executeShellScript(ShellArchiveCache, executor, abort)
}
err = b.executeUploadArtifacts(err, executor, abort)
return err
}
func (b *Build) run(executor Executor) (err error) {
buildTimeout := b.Timeout
if buildTimeout <= 0 {
buildTimeout = DefaultTimeout
}
buildFinish := make(chan error, 1)
buildAbort := make(chan interface{})
// Run build script
go func() {
buildFinish <- b.executeScript(executor, buildAbort)
}()
// Wait for signals: cancel, timeout, abort or finish
b.Log().Debugln("Waiting for signals...")
select {
case <-b.Trace.Aborted():
err = &BuildError{Inner: errors.New("canceled")}
case <-time.After(time.Duration(buildTimeout) * time.Second):
err = &BuildError{Inner: fmt.Errorf("execution took longer than %v seconds", buildTimeout)}
case signal := <-b.SystemInterrupt:
err = fmt.Errorf("aborted: %v", signal)
case err = <-buildFinish:
return err
}
b.Log().WithError(err).Debugln("Waiting for build to finish...")
// Wait till we receive that build did finish
for {
select {
case buildAbort <- true:
case <-buildFinish:
return err
}
}
}
func (b *Build) retryCreateExecutor(globalConfig *Config, provider ExecutorProvider, logger BuildLogger) (executor Executor, err error) {
for tries := 0; tries < PreparationRetries; tries++ {
executor = provider.Create()
if executor == nil {
err = errors.New("failed to create executor")
return
}
err = executor.Prepare(globalConfig, b.Runner, b)
if err == nil {
break
}
if executor != nil {
executor.Cleanup()
executor = nil
}
if _, ok := err.(*BuildError); ok {
break
}
logger.SoftErrorln("Preparation failed:", err)
logger.Infoln("Will be retried in", PreparationRetryInterval, "...")
time.Sleep(PreparationRetryInterval)
}
return
}
func (b *Build) Run(globalConfig *Config, trace BuildTrace) (err error) {
var executor Executor
logger := NewBuildLogger(trace, b.Log())
logger.Println("Running with " + AppVersion.Line() + helpers.ANSI_RESET)
defer func() {
if _, ok := err.(*BuildError); ok {
logger.SoftErrorln("Build failed:", err)
trace.Fail(err)
} else if err != nil {
logger.Errorln("Build failed (system failure):", err)
trace.Fail(err)
} else {
logger.Infoln("Build succeeded")
trace.Success()
}
if executor != nil {
executor.Cleanup()
}
}()
b.Trace = trace
provider := GetExecutor(b.Runner.Executor)
if provider == nil {
return errors.New("executor not found")
}
executor, err = b.retryCreateExecutor(globalConfig, provider, logger)
if err == nil {
err = b.run(executor)
}
if executor != nil {
executor.Finish(err)
}
return err
}
func (b *Build) String() string {
return helpers.ToYAML(b)
}
func (b *Build) GetDefaultVariables() BuildVariables {
return BuildVariables{
{"CI", "true", true, true, false},
{"CI_DEBUG_TRACE", "false", true, true, false},
{"CI_BUILD_REF", b.Sha, true, true, false},
{"CI_BUILD_BEFORE_SHA", b.BeforeSha, true, true, false},
{"CI_BUILD_REF_NAME", b.RefName, true, true, false},
{"CI_BUILD_ID", strconv.Itoa(b.ID), true, true, false},
{"CI_BUILD_REPO", b.RepoURL, true, true, false},
{"CI_BUILD_TOKEN", b.Token, true, true, false},
{"CI_PROJECT_ID", strconv.Itoa(b.ProjectID), true, true, false},
{"CI_PROJECT_DIR", b.FullProjectDir(), true, true, false},
{"CI_SERVER", "yes", true, true, false},
{"CI_SERVER_NAME", "GitLab CI", true, true, false},
{"CI_SERVER_VERSION", "", true, true, false},
{"CI_SERVER_REVISION", "", true, true, false},
{"GITLAB_CI", "true", true, true, false},
}
}
func (b *Build) GetAllVariables() (variables BuildVariables) {
if b.Runner != nil {
variables = append(variables, b.Runner.GetVariables()...)
}
variables = append(variables, b.GetDefaultVariables()...)
variables = append(variables, b.Variables...)
return variables.Expand()
}
func (b *Build) GetGitDepth() string {
return b.GetAllVariables().Get("GIT_DEPTH")
}
func (b *Build) GetGitStrategy() GitStrategy {
switch b.GetAllVariables().Get("GIT_STRATEGY") {
case "clone":
return GitClone
case "fetch":
return GitFetch
case "none":
return GitNone
default:
if b.AllowGitFetch {
return GitFetch
}
return GitClone
}
}
func (b *Build) IsDebugTraceEnabled() bool {
trace, err := strconv.ParseBool(b.GetAllVariables().Get("CI_DEBUG_TRACE"))
if err != nil {
return false
}
return trace
}
func (b *Build) GetDockerAuthConfig() string {
return b.GetAllVariables().Get("DOCKER_AUTH_CONFIG")
}