-
Notifications
You must be signed in to change notification settings - Fork 109
/
Jenkinsfile
347 lines (334 loc) · 10.7 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
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
#!/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;
}
}
def mainBranches() {
return BRANCH_NAME == "develop" || BRANCH_NAME.startsWith("release/");
}
def cronSchedule() {
node {
if ( env.CRON_SCHEDULE_URL == null ) {
println "ERROR: No cron schedule url in the environment"
return ""
}
println "DEBUG: Fetching Cron Schedule from ${env.CRON_SCHEDULE_URL}"
def YAML = sh (script: "curl ${env.CRON_SCHEDULE_URL}", returnStdout: true).trim()
def schedules = readYaml text: YAML
def branch_cfg = schedules[BRANCH_NAME] ? schedules[BRANCH_NAME] : schedules["default"]
if ( branch_cfg == null ) {
println "ERROR: Failed to retrieve the cron schedule for the branch: ${BRANCH_NAME}"
return ""
}
def job_name_split = env.JOB_NAME.tokenize('/') as String[];
def project_name = job_name_split[0]
if ( project_name == null ) {
println "ERROR: No project name for: ${env.JOB_NAME}"
return ""
}
def project_cfg = branch_cfg[project_name] ? branch_cfg[project_name] : branch_cfg["default"]
if ( project_cfg == null ) {
println "ERROR: No cron schedule for: ${project_name}"
return ""
}
println "INFO: Cron Schedule for ${project_name}/${BRANCH_NAME}: ${project_cfg}"
return project_cfg
}
}
def dockerId() {
script {
dockerId = sh (script: "./utils/dependencies/scripts/git-org-name.sh --case upper", returnStdout: true).trim() + "_DOCKERHUB"
println "Using docker id: ${dockerId}"
return dockerId
}
}
// TODO: Use multiple choices
run_linter = true
rust_test = true
grpc_test = true
pytest_test = true
// WA https://issues.jenkins.io/browse/JENKINS-41929
// on the first run of new parameters, they are set to null.
run_tests = params.run_tests == null ? true : params.run_tests
build_images = params.build_images == null ? false : params.build_images
if (currentBuild.getBuildCauses('jenkins.branch.BranchIndexingCause') && mainBranches()) {
print "INFO: Branch Indexing, skip tests and push the new images."
run_tests = false
build_images = true
}
pipeline {
agent none
options {
timeout(time: 5, unit: 'HOURS')
skipDefaultCheckout()
}
parameters {
booleanParam(defaultValue: false, name: 'build_images')
booleanParam(defaultValue: true, name: 'run_tests')
}
triggers {
cron(cronSchedule())
}
stages {
stage('init') {
agent { label 'nixos-mayastor' }
steps {
cleanWs()
checkout([
$class: 'GitSCM',
branches: scm.branches,
extensions: scm.extensions.findAll {
!(it instanceof jenkins.plugins.git.GitSCMSourceDefaults)
} + [[
$class: 'CloneOption',
noTags: false,
reference: '', shallow: false
], [
$class: 'SubmoduleOption',
disableSubmodules: false,
parentCredentials: true,
recursiveSubmodules: true,
reference: '',
trackingSubmodules: false
]],
userRemoteConfigs: scm.userRemoteConfigs
])
stash name: 'source', useDefaultExcludes: false
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/*'
expression { run_linter == false }
}
}
expression { run_tests == true }
}
steps {
cleanWs()
unstash 'source'
sh 'nix-shell --run "FMT_OPTS=--check ./scripts/rust-style.sh" ci.nix'
sh 'nix-shell --run "./scripts/rust-linter.sh" ci.nix'
sh 'nix-shell --run "./scripts/js-check.sh" ci.nix'
sh 'nix-shell --run "nixpkgs-fmt --check ." ci.nix'
script {
if (env.BRANCH_NAME != "trying") {
sh 'nix-shell --run "./scripts/check-submodule-branches.sh" ci.nix'
}
}
}
}
stage('test') {
when {
beforeAgent true
not {
anyOf {
branch 'master'
}
}
expression { run_tests == true }
}
parallel {
stage('rust unit tests') {
when {
beforeAgent true
expression { rust_test == true }
}
agent { label 'nixos-mayastor' }
environment {
START_DATE = new Date().format("yyyy-MM-dd HH:mm:ss", TimeZone.getTimeZone('UTC'))
}
steps {
cleanWs()
unstash 'source'
sh 'printenv'
sh 'nix-shell --run "cargo build --bins --features=io-engine-testing" ci.nix'
sh 'nix-shell --run "./scripts/cargo-test.sh" ci.nix'
}
post {
always {
sh 'nix-shell --run "./scripts/clean-cargo-tests.sh" ci.nix'
sh 'sudo ./scripts/check-coredumps.sh --since "${START_DATE}"'
}
}
}
stage('image build test') {
when {
branch 'staging'
}
agent { label 'nixos-mayastor' }
steps {
cleanWs()
unstash 'source'
sh 'printenv'
sh './scripts/release.sh --skip-publish --debug'
}
}
stage('grpc tests') {
when {
beforeAgent true
expression { grpc_test == true }
}
agent { label 'nixos-mayastor' }
environment {
START_DATE = new Date().format("yyyy-MM-dd HH:mm:ss", TimeZone.getTimeZone('UTC'))
}
steps {
cleanWs()
unstash 'source'
sh 'printenv'
sh 'nix-shell --run "cargo build --bins --features=io-engine-testing" ci.nix'
sh 'nix-shell --run "./scripts/grpc-test.sh" ci.nix'
}
post {
always {
sh 'nix-shell --run "./scripts/clean-cargo-tests.sh" ci.nix'
junit '*-xunit-report.xml'
sh 'sudo ./scripts/check-coredumps.sh --since "${START_DATE}"'
}
}
}
stage('pytest tests') {
when {
beforeAgent true
expression { pytest_test == true }
}
agent { label 'virtual-nixos-mayastor' }
stages {
stage('checkout') {
steps {
cleanWs()
checkout([
$class: 'GitSCM',
branches: scm.branches,
extensions: scm.extensions.findAll {
!(it instanceof jenkins.plugins.git.GitSCMSourceDefaults)
} + [[
$class: 'CloneOption',
noTags: false,
reference: '',
shallow: false
], [
$class: 'SubmoduleOption',
disableSubmodules: false,
parentCredentials: true,
recursiveSubmodules: true,
reference: '',
trackingSubmodules: false
]],
userRemoteConfigs: scm.userRemoteConfigs
])
}
}
stage('build') {
steps {
sh 'printenv'
sh 'nix-shell --run "cargo build --bins --features=io-engine-testing" ci.nix'
}
}
stage('python setup') {
steps {
sh 'nix-shell --run "./test/python/setup.sh" ci.nix'
}
}
stage('run tests') {
steps {
sh 'printenv'
// Cleanup any existing containers.
// They could be lingering if there were previous test failures.
sh 'docker system prune -f'
sh 'nix-shell --run "./scripts/pytest-tests.sh" ci.nix'
}
post {
always {
junit 'test/python/reports/**/*xunit-report.xml'
sh 'nix-shell --run "./scripts/pytest-tests.sh --clean-all-exit" ci.nix'
}
}
}
}
}
}// parallel stages block
}// end of test stage
stage('build and push images') {
agent { label 'nixos-mayastor' }
when {
beforeAgent true
anyOf {
expression { build_images == true }
anyOf {
branch 'master'
branch 'release/*'
branch 'develop'
}
}
}
steps {
sh 'printenv'
// Clean the workspace and unstash the source to ensure we build and push the correct images.
cleanWs()
unstash 'source'
withCredentials([usernamePassword(credentialsId: dockerId(), usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
sh 'echo $PASSWORD | docker login -u $USERNAME --password-stdin'
}
sh './scripts/release.sh'
}
post {
always {
sh 'docker logout'
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 != mainBranches()) 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()]
]
]
])
}
}
}
}
}
}