-
Notifications
You must be signed in to change notification settings - Fork 0
/
executor_abstract.go
114 lines (97 loc) · 2.48 KB
/
executor_abstract.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
package executors
import (
"context"
"os"
"gitlab.com/gitlab-org/gitlab-runner/common"
)
type ExecutorOptions struct {
DefaultBuildsDir string
DefaultCacheDir string
SharedBuildsDir bool
Shell common.ShellScriptInfo
ShowHostname bool
}
type AbstractExecutor struct {
ExecutorOptions
common.BuildLogger
Config common.RunnerConfig
Build *common.Build
Trace common.JobTrace
BuildShell *common.ShellConfiguration
currentStage common.ExecutorStage
Context context.Context
}
func (e *AbstractExecutor) updateShell() error {
script := e.Shell()
script.Build = e.Build
if e.Config.Shell != "" {
script.Shell = e.Config.Shell
}
return nil
}
func (e *AbstractExecutor) generateShellConfiguration() error {
info := e.Shell()
info.PreCloneScript = e.Config.PreCloneScript
info.PreBuildScript = e.Config.PreBuildScript
info.PostBuildScript = e.Config.PostBuildScript
shellConfiguration, err := common.GetShellConfiguration(*info)
if err != nil {
return err
}
e.BuildShell = shellConfiguration
e.Debugln("Shell configuration:", shellConfiguration)
return nil
}
func (e *AbstractExecutor) startBuild() error {
// Save hostname
if e.ShowHostname && e.Build.Hostname == "" {
e.Build.Hostname, _ = os.Hostname()
}
// Start actual build
rootDir := e.Config.BuildsDir
if rootDir == "" {
rootDir = e.DefaultBuildsDir
}
cacheDir := e.Config.CacheDir
if cacheDir == "" {
cacheDir = e.DefaultCacheDir
}
e.Build.StartBuild(rootDir, cacheDir, e.SharedBuildsDir)
return nil
}
func (e *AbstractExecutor) Shell() *common.ShellScriptInfo {
return &e.ExecutorOptions.Shell
}
func (e *AbstractExecutor) Prepare(options common.ExecutorPrepareOptions) error {
e.currentStage = common.ExecutorStagePrepare
e.Context = options.Context
e.Config = *options.Config
e.Build = options.Build
e.Trace = options.Trace
e.BuildLogger = common.NewBuildLogger(options.Trace, options.Build.Log())
err := e.startBuild()
if err != nil {
return err
}
err = e.updateShell()
if err != nil {
return err
}
err = e.generateShellConfiguration()
if err != nil {
return err
}
return nil
}
func (e *AbstractExecutor) Finish(err error) {
e.currentStage = common.ExecutorStageFinish
}
func (e *AbstractExecutor) Cleanup() {
e.currentStage = common.ExecutorStageCleanup
}
func (e *AbstractExecutor) GetCurrentStage() common.ExecutorStage {
return e.currentStage
}
func (e *AbstractExecutor) SetCurrentStage(stage common.ExecutorStage) {
e.currentStage = stage
}