forked from mongodb/mongosql-auth-c
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.evg.yml
More file actions
684 lines (646 loc) · 21.7 KB
/
.evg.yml
File metadata and controls
684 lines (646 loc) · 21.7 KB
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
#
# In order to simplify the process of using, reading, and debugging evergreen
# expansions in this file, we have adopted the following conventions for naming
# the expansions according to where they were created:
#
# - Expansions in all lowercase (${some_value}) are set by evergreen itself,
# either as global expansions or as project expansions.
#
# - Expansions in all caps (${SOME_VALUE}) are created by re-exporting environment
# variables from prepare-shell.sh in the "export variables" function.
#
# - Expansions prefixed with an underscore (${_some_value}) are set on the
# buildvariant level.
#
# - Expansions prefixed with `var_` (${var_some_value}) are parameters passed
# into evergreen functions by the tasks that call them.
#
stepback: true
command_type: setup
buildvariants:
- matrix_name: full_matrix
display_name: "${os}"
tasks:
- name: compile
- name: sign
run_on: linux-64-amzn-build
- name: unit_tests
- name: integration_tests_plain
- name: integration_tests_scram_sha_1
- name: integration_tests_scram_sha_256
- name: integration_tests_gssapi
matrix_spec:
os: "*"
rules:
- if:
os: [ "windows-32","windows-64" ]
then:
remove_tasks: ["integration_tests_gssapi"]
pre:
- command: shell.track
- func: "fetch source"
- func: "export variables"
- func: "reset testing state"
post:
- func: "upload artifacts"
- command: shell.cleanup
tasks:
- name: compile
exec_timeout_secs: 14400 # 4h
commands:
- func: "install dependencies"
- func: "build icu"
- func: "build mongosql_auth"
vars:
release: true
- func: "create packages"
- func: "upload packages"
- name: sign
depends_on:
- name: compile
commands:
- func: "fetch packages"
- func: "sign msi installer"
- func: "upload release packages"
- name: unit_tests
exec_timeout_secs: 14400 # 4h
commands:
- func: "install dependencies"
- func: "build icu"
- func: "build mongosql_auth"
- func: "run unit tests"
- name: integration_tests_plain
exec_timeout_secs: 14400 # 4h
commands:
- func: "install dependencies"
- func: "start mongosqld"
vars:
var_mongodb_uri: --mongo-uri=ldaptest.10gen.cc
- func: "build icu"
- func: "build mongosql_auth"
- func: "run plain integration tests"
- name: integration_tests_scram_sha_1
exec_timeout_secs: 14400 # 4h
commands:
- func: "install dependencies"
- func: "start mongosqld"
vars:
var_auth_mechanism: SCRAM-SHA-1
- func: "start mongo-orchestration"
- func: "build icu"
- func: "build mongosql_auth"
- func: "run scram integration tests"
vars:
var_auth_mechanism: SCRAM-SHA-1
- name: integration_tests_scram_sha_256
exec_timeout_secs: 14400 # 4h
commands:
- func: "install dependencies"
- func: "start mongosqld"
vars:
var_auth_mechanism: SCRAM-SHA-256
- func: "start mongo-orchestration"
- func: "build icu"
- func: "build mongosql_auth"
- func: "run scram integration tests"
vars:
var_auth_mechanism: SCRAM-SHA-256
- name: integration_tests_gssapi
exec_timeout_secs: 14400 # 4h
commands:
- func: "install dependencies"
- func: "build icu"
- func: "build mongosql_auth"
- func: "run gssapi integration tests"
functions:
"build icu":
command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/build-icu.sh
"build mongosql_auth":
command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
export RELEASE='${release}'
${SCRIPT_DIR}/build-mongosql-auth.sh
"create packages":
command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/create-packages.sh
"export variables":
- command: shell.exec
type: system
params:
silent: true
working_dir: mongosql-auth-c
script: |
if [ "Windows_NT" = "$OS" ]; then
set -o igncr
fi
VARIANT="${variant|other}"
export PROJECT_DIR="$(pwd)"
export SCRIPT_DIR="$PROJECT_DIR/test/bin"
if [ "Windows_NT" = "$OS" ]; then
export PROJECT_DIR="$(cygpath -m $PROJECT_DIR)"
export SCRIPT_DIR="$(cygpath -m $SCRIPT_DIR)"
fi
CURRENT_VERSION="$(git describe --always)"
. "$SCRIPT_DIR/platforms.sh"
# create expansions from values calculated above
cat <<EOT > $PROJECT_DIR/expansions.yml
PROJECT_DIR: "$PROJECT_DIR"
SCRIPT_DIR: "$SCRIPT_DIR"
CURRENT_VERSION: "$CURRENT_VERSION"
PUSH_NAME: "$PUSH_NAME"
PUSH_ARCH: "$PUSH_ARCH"
PREPARE_SHELL: |
if [ "Windows_NT" = "$OS" ]; then
set -o igncr
export SHELLOPTS
fi
export VARIANT="$VARIANT"
export PROJECT_DIR="$PROJECT_DIR"
EOT
- command: expansions.update
params:
file: mongosql-auth-c/expansions.yml
"fetch packages":
- command: s3.get
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
remote_file: mongosql-auth-c/artifacts/${version_id}/${build_variant}/pkg/release-bundles.tgz
extract_to: mongosql-auth-c/test/artifacts/
bucket: mciuploads
"fetch source":
- command: shell.exec
type: system
params:
silent: true
script: |
rm -rf mongosql-auth-c
- command: git.get_project
params:
directory: mongosql-auth-c
- command: git.apply_patch
type: test
params:
directory: mongosql-auth-c
"install dependencies":
command: shell.exec
params:
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/install-build-deps.sh
"reset testing state":
- command: shell.exec
type: system
params:
silent: true
script: |
${killall_mci}
- command: shell.exec
type: system
params:
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/reset-testing-state.sh
"run plain integration tests":
- command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
export PLAIN_USER=${plain_auth_username}
export PLAIN_PASSWD='${plain_auth_password}'
${SCRIPT_DIR}/run-integration-tests-plain.sh
"run scram integration tests":
- command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
export USERNAME=bob
export PASSWORD=pwd123
if test "${var_auth_mechanism}" = "SCRAM-SHA-256"; then
export USERNAME=bob256
export PASSWORD=pwd↔256
export MECHANISM="${var_auth_mechanism}"
export MONGO_CLIENT_ARGS="-u bob -p pwd123 --authenticationDatabase admin"
export MONGO_OTHER_USER_ROLES="[{role: 'root', db: 'admin'}]"
${SCRIPT_DIR}/create-user.sh
export USERNAME=$USERNAME"?mechanism="$MECHANISM
fi
${SCRIPT_DIR}/run-integration-tests-scram.sh
"run gssapi integration tests":
- command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
export GSSAPI_USER=${gssapi_auth_username}
export GSSAPI_PASSWD='${gssapi_auth_password}'
export GSSAPI_KTNAME='${PROJECT_DIR}/test/artifacts/gssapi/drivers.keytab'
echo '${gssapi_auth_linux_keytab_base64}' > /tmp/drivers.keytab.base64
mkdir -p $(dirname $GSSAPI_KTNAME)
base64 --decode /tmp/drivers.keytab.base64 > $GSSAPI_KTNAME
${SCRIPT_DIR}/run-integration-tests-gssapi.sh
"run unit tests":
- command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/run-unit-tests.sh
"sign msi installer":
- command: shell.exec
type: system
params:
silent: true
script: |
echo "${signing_token_bi_connector}" > ${PROJECT_DIR}/signing_auth_token
- command: shell.exec
params:
working_dir: mongosql-auth-c/test/artifacts
script: |
/usr/local/bin/notary-client.py \
--key-name "bi-connector" \
--auth-token-file ${PROJECT_DIR}/signing_auth_token \
--comment "Evergreen Automatic Signing (mongosql-auth-c) - ${version_id} - ${build_variant}" \
--notary-url http://notary-service.build.10gen.cc:5000 \
--skip-missing \
release.msi
"start mongo-orchestration":
- command: shell.exec
params:
script: |
${PREPARE_SHELL}
${SCRIPT_DIR}/start-orchestration.sh
"start mongosqld":
- command: shell.exec
type: test
params:
script: |
${PREPARE_SHELL}
export EVG_USER=${evg_user}
export EVG_KEY=${evg_key}
export AWS_ACCESS_KEY_ID=${aws_key}
export AWS_SECRET_ACCESS_KEY=${aws_secret}
# the SCRAM tests use mongo orchestration
if test "${var_auth_mechanism}" = "SCRAM-SHA-1" || test "${var_auth_mechanism}" = "SCRAM-SHA-256"; then
export MONGO_USERNAME=bob
export MONGO_PASSWORD=pwd123
else
export MONGO_USERNAME="${admin_username}"
export MONGO_PASSWORD="${admin_password}"
fi
export MONGO_URI=${var_mongodb_uri|--mongo-uri=127.0.0.1}
${SCRIPT_DIR}/start-mongosqld.sh
"upload artifacts":
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/release.tgz
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosql-auth-${PUSH_NAME}-${PUSH_ARCH}-${CURRENT_VERSION}.tgz
content_type: application/x-gzip
bucket: mciuploads
permissions: public-read
display_name: "mongosql-auth.tgz"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/release.zip
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosql-auth-${PUSH_NAME}-${PUSH_ARCH}-${CURRENT_VERSION}.zip
content_type: application/x-gzip
bucket: mciuploads
permissions: public-read
display_name: "mongosql-auth.zip"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/release.msi
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosql-auth-${PUSH_NAME}-${PUSH_ARCH}-${CURRENT_VERSION}.msi
content_type: application/x-msi
bucket: mciuploads
permissions: public-read
display_name: "mongosql-auth.msi"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/release-signed.msi
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosql-auth-${PUSH_NAME}-${PUSH_ARCH}-${CURRENT_VERSION}.msi
content_type: application/x-msi
bucket: mciuploads
permissions: public-read
display_name: "mongosql-auth-signed.msi"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/build/mongosql_auth.so
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosql_auth.so
content_type: application/octet-stream
bucket: mciuploads
permissions: public-read
display_name: "mongosql_auth.so"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/build/mongosql_auth.so
remote_file: mongosql-auth-c/artifacts/latest/${build_variant}/mongosql_auth.so
content_type: application/octet-stream
bucket: mciuploads
permissions: public-read
display_name: "mongosql_auth.so"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/build/mongosql_auth.dll
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosql_auth.dll
content_type: application/octet-stream
bucket: mciuploads
permissions: public-read
display_name: "mongosql_auth.dll"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/orchestration/server.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/orchestration-server.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "orchestration-server.log"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/go/src/github.com/10gen/mongosqld/testdata/artifacts/log/mongosqld.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosqld.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "mongosqld.log"
- command: s3.put
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/log/install-build-deps.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/install-build-deps.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "install-build-deps.log"
- command: s3.put
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/log/build-mongosql-auth.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/build-mongosql-auth.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "build-mongosql-auth.log"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/log/start-orchestration.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/start-orchestration.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "start-orchestration.log"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/log/start-mongosqld.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/start-mongosqld.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "start-mongosqld.log"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/log/mongosqld.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosqld.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "mongosqld.log"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/log/create-release.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/create-release.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "create-release.log"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/log/run-integration-tests-gssapi.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/run-integration-tests-gssapi.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "run-integration-tests-gssapi.log"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/log/run-integration-tests-plain.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/run-integration-tests-plain.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "run-integration-tests-plain.log"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/log/run-integration-tests-scram.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/run-integration-tests-scram.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "run-integration-tests-scram.log"
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/log/create-packages.log
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/create-packages.log
content_type: text/plain
bucket: mciuploads
permissions: public-read
display_name: "create-packages.log"
"upload packages":
- command: archive.targz_pack
params:
target: mongosql-auth-c/test/artifacts/upload.tgz
source_dir: mongosql-auth-c/test/artifacts/
include:
- "./release.*"
- command: s3.put
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/upload.tgz
remote_file: mongosql-auth-c/artifacts/${version_id}/${build_variant}/pkg/release-bundles.tgz
content_type: application/x-gzip
bucket: mciuploads
permissions: public-read
display_name: All Release Bundles (.tgz)
"upload release packages":
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/release.tgz
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosql-auth-${PUSH_NAME}-${PUSH_ARCH}-${CURRENT_VERSION}.tgz
content_type: application/x-gzip
bucket: mciuploads
permissions: public-read
display_name: mongosql-auth-${PUSH_NAME}-${PUSH_ARCH}-${CURRENT_VERSION}.tgz
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/release.zip
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosql-auth-${PUSH_NAME}-${PUSH_ARCH}-${CURRENT_VERSION}.zip
content_type: application/x-gzip
bucket: mciuploads
permissions: public-read
display_name: mongosql-auth-${PUSH_NAME}-${PUSH_ARCH}-${CURRENT_VERSION}.zip
- command: s3.put
params:
optional: true
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: mongosql-auth-c/test/artifacts/release-signed.msi
remote_file: mongosql-auth-c/artifacts/${build_variant}/${task_id}/mongosql-auth-${PUSH_NAME}-${PUSH_ARCH}-${CURRENT_VERSION}.msi
content_type: application/x-msi
bucket: mciuploads
permissions: public-read
display_name: mongosql-auth-${PUSH_NAME}-${PUSH_ARCH}-${CURRENT_VERSION}.msi
axes:
- id: os
display_name: OS
values:
- id: ubuntu1404-64
display_name: Ubuntu 14.04
run_on: ubuntu1404-build
variables:
variant: ubuntu1404-64
- id: ubuntu1604-64
display_name: Ubuntu 16.04
run_on: ubuntu1604-build
variables:
variant: ubuntu1604-64
- id: rhel70
display_name: RHEL 7.0
variables:
variant: rhel70
run_on: rhel70
- id: osx
display_name: OSX 10.12
run_on: macos-1012
variables:
variant: macos
- id: windows-64
display_name: Windows 64 (VS2015)
run_on: windows-64-vs2015-compile
variables:
variant: windows-64
- id: windows-32
display_name: Windows 32 (VS2015)
run_on: windows-64-vs2015-compile
variables:
variant: windows-32
- id: os-disabled
display_name: Disabled OSes
values:
- id: debian71
display_name: Debian 7.1
run_on: debian71-test
variables:
variant: debian71
- id: debian81
display_name: Debian 8.1 (nightly)
run_on: debian81-test
variables:
variant: debian81
- id: linux-64-amazon-ami
display_name: Amazon Linux (Enterprise)
variables:
variant: amazon
run_on: linux-64-amzn-build
- id: rhel62
display_name: RHEL 6.2
variables:
variant: rhel62
run_on: rhel62-test
- id: rhel-71-ppc64le
display_name: RHEL 7.1 PPC64LE
variables:
variant: rhel71-ppc
run_on: rhel71-power8-test
batchtime: 1440 # 1 day
- id: rhel-72-s390x
display_name: RHEL 7.2 s390x (nightly)
variables:
variant: rhel72-s390x
run_on:
- rhel72-zseries-build
- rhel72-zseries-test
batchtime: 1440 # 1 day
- id: suse11-64
display_name: SLES 11
variables:
variant: suse11
run_on: suse11-test
- id: suse12-64
display_name: SLES 12
variables:
variant: suse12
run_on: suse12-test