-
Notifications
You must be signed in to change notification settings - Fork 1
/
stop_pipeline.go
127 lines (111 loc) · 2.57 KB
/
stop_pipeline.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
package cmd
import (
"fmt"
"io"
"sort"
"strings"
"github.com/spf13/cobra"
"github.com/jenkins-x/golang-jenkins"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/util"
)
// StopPipelineOptions contains the command line options
type StopPipelineOptions struct {
GetOptions
Build int
Filter string
Jobs map[string]gojenkins.Job
}
var (
stopPipelineLong = templates.LongDesc(`
Stops the pipeline build.
`)
stopPipelineExample = templates.Examples(`
# Stop a pipeline
jx stop pipeline foo/bar/master -b 2
# Select the pipeline to stop
jx stop pipeline
`)
)
// NewCmdStopPipeline creates the command
func NewCmdStopPipeline(f Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &StopPipelineOptions{
GetOptions: GetOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "pipeline [flags]",
Short: "Stops one or more pipelines",
Long: stopPipelineLong,
Example: stopPipelineExample,
Aliases: []string{"pipe", "pipeline", "build", "run"},
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().IntVarP(&options.Build, "build", "b", 0, "The build number to stop")
cmd.Flags().StringVarP(&options.Filter, "filter", "f", "", "Filters all the available jobs by those that contain the given text")
return cmd
}
// Run implements this command
func (o *StopPipelineOptions) Run() error {
jobMap, err := o.getJobMap(o.Filter)
if err != nil {
return err
}
o.Jobs = jobMap
args := o.Args
names := []string{}
for k, _ := range o.Jobs {
names = append(names, k)
}
sort.Strings(names)
if len(args) == 0 {
defaultName := ""
for _, n := range names {
if strings.HasSuffix(n, "/master") {
defaultName = n
break
}
}
name, err := util.PickNameWithDefault(names, "Which pipelines do you want to stop: ", defaultName)
if err != nil {
return err
}
args = []string{name}
}
for _, a := range args {
err = o.stopJob(a, names)
if err != nil {
return err
}
}
return nil
}
func (o *StopPipelineOptions) stopJob(name string, allNames []string) error {
job := o.Jobs[name]
jenkinsClient, err := o.JenkinsClient()
if err != nil {
return err
}
build := o.Build
if build <= 0 {
last, err := jenkinsClient.GetLastBuild(job)
if err != nil {
return err
}
build = last.Number
if build <= 0 {
return fmt.Errorf("No build available for %s", name)
}
}
return jenkinsClient.StopBuild(job, build)
}