Signed-off-by: Stefan Scherer <stefan.scherer@docker.com>
(cherry picked from commit c239bbbcb20acc0e85dc075c375d8ef9b489755a)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
| ... | ... |
@@ -265,7 +265,7 @@ pipeline {
|
| 265 | 265 |
sh ''' |
| 266 | 266 |
# todo: include ip_vs in base image |
| 267 | 267 |
sudo modprobe ip_vs |
| 268 |
- |
|
| 268 |
+ |
|
| 269 | 269 |
docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} .
|
| 270 | 270 |
''' |
| 271 | 271 |
} |
| ... | ... |
@@ -275,7 +275,7 @@ pipeline {
|
| 275 | 275 |
sh '''#!/bin/bash |
| 276 | 276 |
# bash is needed so 'jobs -p' works properly |
| 277 | 277 |
# it also accepts setting inline envvars for functions without explicitly exporting |
| 278 |
- |
|
| 278 |
+ |
|
| 279 | 279 |
run_tests() {
|
| 280 | 280 |
[ -n "$TESTDEBUG" ] && rm= || rm=--rm; |
| 281 | 281 |
docker run $rm -t --privileged \ |
| ... | ... |
@@ -375,9 +375,7 @@ pipeline {
|
| 375 | 375 |
beforeAgent true |
| 376 | 376 |
expression { params.s390x }
|
| 377 | 377 |
} |
| 378 |
- agent { label 's390x-ubuntu-1604' }
|
|
| 379 |
- // s390x machines run on Docker 18.06, and buildkit has some bugs on that version |
|
| 380 |
- environment { DOCKER_BUILDKIT = '0' }
|
|
| 378 |
+ agent { label 's390x-ubuntu-1804' }
|
|
| 381 | 379 |
|
| 382 | 380 |
stages {
|
| 383 | 381 |
stage("Print info") {
|
| ... | ... |
@@ -483,9 +481,7 @@ pipeline {
|
| 483 | 483 |
not { changeRequest() }
|
| 484 | 484 |
expression { params.s390x }
|
| 485 | 485 |
} |
| 486 |
- agent { label 's390x-ubuntu-1604' }
|
|
| 487 |
- // s390x machines run on Docker 18.06, and buildkit has some bugs on that version |
|
| 488 |
- environment { DOCKER_BUILDKIT = '0' }
|
|
| 486 |
+ agent { label 's390x-ubuntu-1804' }
|
|
| 489 | 487 |
|
| 490 | 488 |
stages {
|
| 491 | 489 |
stage("Print info") {
|