blob: 2c5babd61c85310f822e280e2c0d7538ac45ca19 (
plain)
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
---
- xtesting-jobs: &xtesting-jobs
name: 'xtesting-jobs'
current-parameters: true
- xtesting-params: &xtesting-params
name: 'xtesting-params'
repo: 'opnfv'
port:
tag:
- latest:
branch: master
- hunter:
branch: stable/hunter
- parameter:
name: xtesting-slave
parameters:
- label:
name: slave
default: lf-build2
- parameter:
name: xtesting-branch
parameters:
- string:
name: branch
default: '{branch}'
- xtesting-containers: &xtesting-containers
name: 'xtesting-containers'
repo: '{repo}'
port: '{port}'
container: '{container}'
tag: '{tag}'
- xtesting-run-containers: &xtesting-run-containers
name: 'xtesting-build-containers'
<<: *xtesting-containers
test: '{test}'
- xtesting-build-containers: &xtesting-build-containers
name: 'xtesting-build-containers'
<<: *xtesting-containers
ref_arg: '{ref_arg}'
path: '{path}'
- builder:
name: xtesting-pull-containers
builders:
- shell: |
set +x
if [ "{repo}" = "_" ]; then
image={container}:{tag}
elif [ "{port}" = "None" ]; then
image={repo}/{container}:{tag}
else
image={repo}:{port}/{container}:{tag}
fi
sudo docker pull $image
- builder:
name: xtesting-build-containers
builders:
- shell: |
set +x
if [ "{repo}" = "_" ]; then
image={container}:{tag}
elif [ "{port}" = "None" ]; then
image={repo}/{container}:{tag}
else
image={repo}:{port}/{container}:{tag}
fi
if [ "{ref_arg}" = "None" ]; then
build_arg=""
else
build_arg="--build-arg {ref_arg}={ref}"
fi
cd {path}
sudo docker build $build_arg \
--pull=false --no-cache --force-rm=true \
-t $image .
- builder:
name: xtesting-run-containers
builders:
- shell: |
set +ex
[ ! -z "$WORKSPACE" ] && sudo rm -rf $WORKSPACE/* || true
if [ "{repo}" = "_" ]; then
image={container}:{tag}
elif [ "{port}" = "None" ]; then
image={repo}/{container}:{tag}
else
image={repo}:{port}/{container}:{tag}
fi
sudo docker run --rm \
-v $WORKSPACE/../$JOB_NAME/results:/var/lib/xtesting/results \
$image run_tests -t {test}
res=$?
gsutil -m cp -r $WORKSPACE/ \
gs://artifacts.opnfv.org/xtesting/$JOB_NAME-$BUILD_ID > /dev/null 2>&1
find $WORKSPACE -type f \
-printf \
"http://artifacts.opnfv.org/xtesting/$JOB_NAME-$BUILD_ID/%P\n"
exit $res
- builder:
name: xtesting-remove-images
builders:
- shell: |
set +x
if [ "{repo}" = "_" ]; then
image={container}:{tag}
elif [ "{port}" = "None" ]; then
image={repo}/{container}:{tag}
else
image={repo}:{port}/{container}:{tag}
fi
sudo docker rmi $image || true
- scm:
name: xtesting-scm
scm:
- git:
url: https://gerrit.opnfv.org/gerrit/functest-xtesting
refspec: '+refs/changes/*:refs/changes/*'
branches:
- '{ref}'
- job-template:
name: 'xtesting-{repo}-{container}-{tag}-pull'
parameters:
- xtesting-slave
builders:
- xtesting-pull-containers:
<<: *xtesting-containers
- project:
name: 'xtesting-opnfv-xtesting-pull'
<<: *xtesting-params
container: 'xtesting'
jobs:
- 'xtesting-{repo}-{container}-{tag}-pull'
- job-template:
name: 'xtesting-{repo}-{container}-{tag}-rmi'
parameters:
- xtesting-slave
builders:
- xtesting-remove-images:
<<: *xtesting-containers
- project:
name: 'xtesting-opnfv-xtesting-rmi'
<<: *xtesting-params
container: 'xtesting'
jobs:
- 'xtesting-{repo}-{container}-{tag}-rmi'
- job-template:
name: 'xtesting-{repo}-{container}-{tag}-{test}-run'
parameters:
- xtesting-slave
builders:
- xtesting-run-containers:
<<: *xtesting-run-containers
- project:
name: 'xtesting-opnfv-xtesting'
<<: *xtesting-params
container: 'xtesting'
test:
- first
- second
- third
- fourth
- fifth
jobs:
- 'xtesting-{repo}-{container}-{tag}-{test}-run'
- job-template:
name: 'xtesting-{tag}-daily'
project-type: multijob
triggers:
- timed: '@daily'
parameters:
- xtesting-slave
properties:
- build-blocker:
use-build-blocker: true
blocking-level: 'NODE'
blocking-jobs:
- '^xtesting-[a-z]+-(daily|check|gate)$'
builders:
- multijob:
name: remove former images
projects:
- name: 'xtesting-opnfv-xtesting-{tag}-rmi'
<<: *xtesting-jobs
- multijob:
name: pull containers
projects:
- name: 'xtesting-opnfv-xtesting-{tag}-pull'
<<: *xtesting-jobs
- multijob:
name: opnfv/xtesting:{tag}
projects:
- name: 'xtesting-opnfv-xtesting-{tag}-first-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-second-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-third-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-fourth-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-fifth-run'
<<: *xtesting-jobs
- job-template:
name: 'xtesting-{repo}-{container}-{tag}-gate'
parameters:
- xtesting-slave
scm:
- xtesting-scm:
ref: $GERRIT_REFSPEC
builders:
- xtesting-build-containers:
<<: *xtesting-build-containers
ref: $GERRIT_REFSPEC
- job-template:
name: 'xtesting-{repo}-{container}-{tag}-check'
parameters:
- xtesting-slave
- xtesting-branch:
branch: '{branch}'
scm:
- xtesting-scm:
ref: $branch
builders:
- xtesting-build-containers:
<<: *xtesting-build-containers
ref: $branch
- project:
name: 'xtesting-_-alpine-3.9-rmi'
repo: _
port:
container: alpine
tag: 3.9
jobs:
- 'xtesting-{repo}-{container}-{tag}-rmi'
- project:
name: 'xtesting-_-alpine-3.9-pull'
repo: _
port:
container: alpine
tag: 3.9
jobs:
- 'xtesting-{repo}-{container}-{tag}-pull'
- project:
name: xtesting-opnfv-xtesting-{tag}-build
<<: *xtesting-params
container: xtesting
ref_arg: BRANCH
path: docker
jobs:
- 'xtesting-{repo}-{container}-{tag}-gate'
- 'xtesting-{repo}-{container}-{tag}-check'
- job-template:
name: 'xtesting-{tag}-check'
project-type: multijob
parameters:
- xtesting-slave
- xtesting-branch:
branch: '{branch}'
properties:
- build-blocker:
use-build-blocker: true
blocking-level: 'NODE'
blocking-jobs:
- '^xtesting-[a-z]+-(daily|check|gate)$'
builders:
- multijob:
name: remove former images
projects:
- name: 'xtesting-opnfv-xtesting-{tag}-rmi'
<<: *xtesting-jobs
- multijob:
name: remove dependencies
projects:
- name: 'xtesting-_-alpine-3.9-rmi'
<<: *xtesting-jobs
- multijob:
name: pull dependencies
projects:
- name: 'xtesting-_-alpine-3.9-pull'
<<: *xtesting-jobs
- multijob:
name: opnfv/functest-xtesting
projects:
- name: 'xtesting-opnfv-xtesting-{tag}-check'
<<: *xtesting-jobs
- multijob:
name: opnfv/xtesting:{tag}
projects:
- name: 'xtesting-opnfv-xtesting-{tag}-first-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-second-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-third-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-fourth-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-fifth-run'
<<: *xtesting-jobs
- trigger:
name: xtesting-patchset-created
triggers:
- gerrit:
server-name: 'gerrit.opnfv.org'
trigger-on:
- patchset-created-event
- comment-added-contains-event:
comment-contains-value: 'recheck'
- comment-added-contains-event:
comment-contains-value: 'reverify'
projects:
- project-compare-type: 'ANT'
project-pattern: 'functest-xtesting'
branches:
- branch-compare-type: 'ANT'
branch-pattern: '**/{branch}'
skip-vote:
successful: false
failed: false
unstable: false
notbuilt: false
- job-template:
name: 'xtesting-{tag}-gate'
project-type: multijob
triggers:
- xtesting-patchset-created:
branch: '{branch}'
parameters:
- xtesting-slave
properties:
- build-blocker:
use-build-blocker: true
blocking-level: 'NODE'
blocking-jobs:
- '^xtesting-[a-z]+-(daily|check|gate)$'
builders:
- multijob:
name: remove former images
projects:
- name: 'xtesting-opnfv-xtesting-{tag}-rmi'
<<: *xtesting-jobs
- multijob:
name: remove dependencies
projects:
- name: 'xtesting-_-alpine-3.9-rmi'
<<: *xtesting-jobs
- multijob:
name: pull dependencies
projects:
- name: 'xtesting-_-alpine-3.9-pull'
<<: *xtesting-jobs
- multijob:
name: opnfv/functest-xtesting
projects:
- name: 'xtesting-opnfv-xtesting-{tag}-gate'
<<: *xtesting-jobs
- multijob:
name: opnfv/xtesting:{tag}
projects:
- name: 'xtesting-opnfv-xtesting-{tag}-first-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-second-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-third-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-fourth-run'
<<: *xtesting-jobs
- name: 'xtesting-opnfv-xtesting-{tag}-fifth-run'
<<: *xtesting-jobs
- project:
name: 'xtesting'
<<: *xtesting-params
jobs:
- 'xtesting-{tag}-daily'
- 'xtesting-{tag}-check'
- 'xtesting-{tag}-gate'
- view:
name: xtesting
view-type: list
columns:
- status
- weather
- job
- last-success
- last-failure
- last-duration
regex: ^xtesting-[a-z]+-(daily|check|gate)$
|