forked from openebs/mayastor-control-plane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
229 lines (219 loc) · 6.83 KB
/
Jenkinsfile
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
#!/usr/bin/env groovy
// Searches previous builds to find first non aborted one
def getLastNonAbortedBuild(build) {
if (build == null) {
return null;
}
if(build.result.toString().equals("ABORTED")) {
return getLastNonAbortedBuild(build.getPreviousBuild());
} else {
return build;
}
}
// Send out a slack message if branch got broken or has recovered
def notifySlackUponStateChange(build) {
def cur = build.getResult()
def prev = getLastNonAbortedBuild(build.getPreviousBuild())?.getResult()
if (cur != prev) {
if (cur == 'SUCCESS') {
slackSend(
channel: '#mayastor-control-plane',
color: 'normal',
message: "Branch ${env.BRANCH_NAME} has been fixed :beers: (<${env.BUILD_URL}|Open>)"
)
} else if (prev == 'SUCCESS') {
slackSend(
channel: '#mayastor-control-plane',
color: 'danger',
message: "Branch ${env.BRANCH_NAME} is broken :face_with_raised_eyebrow: (<${env.BUILD_URL}|Open>)"
)
}
}
}
def mainBranches() {
return BRANCH_NAME == "develop" || BRANCH_NAME.startsWith("release-");
}
run_linter = true
rust_test = true
bdd_test = true
// Will skip steps for cases when we don't want to build
if (currentBuild.getBuildCauses('jenkins.branch.BranchIndexingCause') && mainBranches()) {
print "INFO: Branch Indexing, skip tests and push the new images."
run_linter = false
rust_test = false
bdd_test = false
build_images = true
}
// Only schedule regular builds on main branches, so we don't need to guard against it
String cron_schedule = mainBranches() ? "0 2 * * *" : ""
pipeline {
agent none
options {
timeout(time: 1, unit: 'HOURS')
}
parameters {
booleanParam(defaultValue: true, name: 'build_images')
}
triggers {
cron(cron_schedule)
}
stages {
stage('init') {
agent { label 'nixos-mayastor' }
steps {
step([
$class: 'GitHubSetCommitStatusBuilder',
contextSource: [
$class: 'ManuallyEnteredCommitContextSource',
context: 'continuous-integration/jenkins/branch'
],
statusMessage: [ content: 'Pipeline started' ]
])
}
}
stage('linter') {
agent { label 'nixos-mayastor' }
when {
beforeAgent true
not {
anyOf {
branch 'master'
branch 'release-*'
branch 'hotfix-*'
expression { run_linter == false }
}
}
}
steps {
sh 'printenv'
sh 'nix-shell --run "./scripts/rust/generate-openapi-bindings.sh"'
sh 'nix-shell --run "cargo fmt --all -- --check"'
sh 'nix-shell --run "cargo clippy --all-targets -- -D warnings"'
sh 'nix-shell --run "black tests/bdd"'
}
}
stage('test') {
when {
beforeAgent true
not {
anyOf {
branch 'master'
branch 'hotfix-*'
}
}
}
parallel {
stage('rust unit tests') {
when{
expression { rust_test == true }
}
agent { label 'nixos-mayastor' }
steps {
withCredentials([usernamePassword(credentialsId: 'dockerhub', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
sh 'echo $PASSWORD | docker login -u $USERNAME --password-stdin'
}
sh 'printenv'
sh 'nix-shell --run "./scripts/rust/test.sh"'
}
post {
always {
// in case of abnormal termination of any nvmf test
sh 'sudo nvme disconnect-all'
}
}
}
stage('BDD tests') {
when{
expression { bdd_test == true }
}
agent { label 'nixos-mayastor' }
steps {
withCredentials([usernamePassword(credentialsId: 'dockerhub', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
sh 'echo $PASSWORD | docker login -u $USERNAME --password-stdin'
}
sh 'printenv'
sh 'nix-shell --run "cargo test -p deployer-cluster"'
sh 'nix-shell --run "./scripts/python/test.sh"'
}
post {
always {
// in case of abnormal termination of any nvmf test
sh 'sudo nvme disconnect-all'
}
}
}
stage('image build test') {
when {
branch 'staging'
}
agent { label 'nixos-mayastor' }
steps {
sh './scripts/nix/git-submodule-init.sh --force'
sh './scripts/release.sh --skip-publish --debug --build-bins'
}
}
}// parallel stages block
}// end of test stage
stage('build and push images') {
agent { label 'nixos-mayastor' }
when {
beforeAgent true
allOf {
expression { params.build_images == true }
anyOf {
branch 'master'
branch 'release-*'
branch 'hotfix-*'
branch 'develop'
}
}
}
steps {
withCredentials([usernamePassword(credentialsId: 'dockerhub', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
sh 'echo $PASSWORD | docker login -u $USERNAME --password-stdin'
}
sh 'printenv'
sh './scripts/nix/git-submodule-init.sh --force'
sh './scripts/release.sh'
}
post {
always {
sh 'docker image prune --all --force'
}
}
}
}
// The main motivation for post block is that if all stages were skipped
// (which happens when running cron job and branch != develop) then we don't
// want to set commit status in github (jenkins will implicitly set it to
// success).
post {
always {
node(null) {
script {
// If no tests were run then we should neither be updating commit
// status in github nor send any slack messages
if (currentBuild.result != null) {
step([
$class : 'GitHubCommitStatusSetter',
errorHandlers : [[$class: "ChangingBuildStatusErrorHandler", result: "UNSTABLE"]],
contextSource : [
$class : 'ManuallyEnteredCommitContextSource',
context: 'continuous-integration/jenkins/branch'
],
statusResultSource: [
$class : 'ConditionalStatusResultSource',
results: [
[$class: 'AnyBuildResult', message: 'Pipeline result', state: currentBuild.getResult()]
]
]
])
if (env.BRANCH_NAME == 'develop') {
notifySlackUponStateChange(currentBuild)
}
}
}
}
}
}
}