mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Jenkinsfile: consistently indent with 4 spaces
From the code style guidelines; https://wiki.jenkins.io/display/JENKINS/Code+Style+Guidelines > 1. Use spaces. Tabs are banned. > 2. Java blocks are 4 spaces. JavaScript blocks as for Java. XML nesting is 2 spaces Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
4e83c90ae8
commit
a95f16ca28
1 changed files with 295 additions and 295 deletions
590
Jenkinsfile
vendored
590
Jenkinsfile
vendored
|
@ -1,13 +1,13 @@
|
||||||
#!groovy
|
#!groovy
|
||||||
pipeline {
|
pipeline {
|
||||||
agent none
|
agent none
|
||||||
|
|
||||||
options {
|
options {
|
||||||
buildDiscarder(logRotator(daysToKeepStr: '30'))
|
buildDiscarder(logRotator(daysToKeepStr: '30'))
|
||||||
timeout(time: 3, unit: 'HOURS')
|
timeout(time: 3, unit: 'HOURS')
|
||||||
timestamps()
|
timestamps()
|
||||||
}
|
}
|
||||||
parameters {
|
parameters {
|
||||||
booleanParam(name: 'unit', defaultValue: true, description: 'x86 unit tests')
|
booleanParam(name: 'unit', defaultValue: true, description: 'x86 unit tests')
|
||||||
booleanParam(name: 'janky', defaultValue: true, description: 'x86 Build/Test')
|
booleanParam(name: 'janky', defaultValue: true, description: 'x86 Build/Test')
|
||||||
booleanParam(name: 'experimental', defaultValue: true, description: 'x86 Experimental Build/Test ')
|
booleanParam(name: 'experimental', defaultValue: true, description: 'x86 Experimental Build/Test ')
|
||||||
|
@ -16,293 +16,293 @@ pipeline {
|
||||||
booleanParam(name: 'vendor', defaultValue: true, description: 'Vendor')
|
booleanParam(name: 'vendor', defaultValue: true, description: 'Vendor')
|
||||||
booleanParam(name: 'windowsRS1', defaultValue: false, description: 'Windows 2016 (RS1) Build/Test')
|
booleanParam(name: 'windowsRS1', defaultValue: false, description: 'Windows 2016 (RS1) Build/Test')
|
||||||
booleanParam(name: 'windowsRS5', defaultValue: false, description: 'Windows 2019 (RS5) Build/Test')
|
booleanParam(name: 'windowsRS5', defaultValue: false, description: 'Windows 2019 (RS5) Build/Test')
|
||||||
}
|
|
||||||
stages {
|
|
||||||
stage('Build') {
|
|
||||||
parallel {
|
|
||||||
stage('unit') {
|
|
||||||
when {
|
|
||||||
beforeAgent true
|
|
||||||
expression { params.unit }
|
|
||||||
}
|
|
||||||
agent { label 'amd64 && ubuntu-1804 && overlay2' }
|
|
||||||
environment { DOCKER_BUILDKIT='1' }
|
|
||||||
|
|
||||||
steps {
|
|
||||||
sh '''
|
|
||||||
# todo: include ip_vs in base image
|
|
||||||
sudo modprobe ip_vs
|
|
||||||
|
|
||||||
GITCOMMIT=$(git rev-parse --short HEAD)
|
|
||||||
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker:$GITCOMMIT .
|
|
||||||
|
|
||||||
docker run --rm -t --privileged \
|
|
||||||
-v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \
|
|
||||||
-v "$WORKSPACE/.git:/go/src/github.com/docker/docker/.git" \
|
|
||||||
--name docker-pr$BUILD_NUMBER \
|
|
||||||
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
|
||||||
-e DOCKER_GRAPHDRIVER=overlay2 \
|
|
||||||
docker:$GITCOMMIT \
|
|
||||||
hack/test/unit
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
junit 'bundles/junit-report.xml'
|
|
||||||
sh '''
|
|
||||||
echo 'Ensuring container killed.'
|
|
||||||
docker rm -vf docker-pr$BUILD_NUMBER || true
|
|
||||||
|
|
||||||
echo 'Chowning /workspace to jenkins user'
|
|
||||||
docker run --rm -v "$WORKSPACE:/workspace" busybox chown -R "$(id -u):$(id -g)" /workspace
|
|
||||||
|
|
||||||
echo 'Creating unit-bundles.tar.gz'
|
|
||||||
tar -czvf unit-bundles.tar.gz bundles/junit-report.xml bundles/go-test-report.json bundles/profile.out
|
|
||||||
'''
|
|
||||||
archiveArtifacts artifacts:'unit-bundles.tar.gz'
|
|
||||||
deleteDir()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('janky') {
|
|
||||||
when {
|
|
||||||
beforeAgent true
|
|
||||||
expression { params.janky }
|
|
||||||
}
|
|
||||||
agent { label 'amd64 && ubuntu-1804 && overlay2' }
|
|
||||||
environment { DOCKER_BUILDKIT='1' }
|
|
||||||
|
|
||||||
steps {
|
|
||||||
sh '''
|
|
||||||
# todo: include ip_vs in base image
|
|
||||||
sudo modprobe ip_vs
|
|
||||||
|
|
||||||
GITCOMMIT=$(git rev-parse --short HEAD)
|
|
||||||
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker:$GITCOMMIT .
|
|
||||||
|
|
||||||
docker run --rm -t --privileged \
|
|
||||||
-v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \
|
|
||||||
-v "$WORKSPACE/.git:/go/src/github.com/docker/docker/.git" \
|
|
||||||
--name docker-pr$BUILD_NUMBER \
|
|
||||||
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
|
||||||
-e DOCKER_GRAPHDRIVER=overlay2 \
|
|
||||||
-e GIT_SHA1=${GIT_COMMIT} \
|
|
||||||
docker:$GITCOMMIT \
|
|
||||||
hack/ci/janky
|
|
||||||
'''
|
|
||||||
sh '''
|
|
||||||
GITCOMMIT=$(git rev-parse --short HEAD)
|
|
||||||
echo "Building e2e image"
|
|
||||||
docker build --build-arg DOCKER_GITCOMMIT=$GITCOMMIT -t moby-e2e-test -f Dockerfile.e2e .
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
sh '''
|
|
||||||
echo "Ensuring container killed."
|
|
||||||
docker rm -vf docker-pr$BUILD_NUMBER || true
|
|
||||||
|
|
||||||
echo "Chowning /workspace to jenkins user"
|
|
||||||
docker run --rm -v "$WORKSPACE:/workspace" busybox chown -R "$(id -u):$(id -g)" /workspace
|
|
||||||
'''
|
|
||||||
sh '''
|
|
||||||
echo "Creating janky-bundles.tar.gz"
|
|
||||||
(find bundles -name '*.log' -o -name '*.prof' -o -name integration.test | xargs tar -czf janky-bundles.tar.gz) || true
|
|
||||||
'''
|
|
||||||
archiveArtifacts artifacts: 'janky-bundles.tar.gz'
|
|
||||||
deleteDir()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('experimental') {
|
|
||||||
when {
|
|
||||||
beforeAgent true
|
|
||||||
expression { params.experimental }
|
|
||||||
}
|
|
||||||
agent { label 'amd64 && ubuntu-1804 && overlay2' }
|
|
||||||
environment { DOCKER_BUILDKIT='1' }
|
|
||||||
steps {
|
|
||||||
sh '''
|
|
||||||
GITCOMMIT=$(git rev-parse --short HEAD)
|
|
||||||
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker:${GITCOMMIT}-exp .
|
|
||||||
|
|
||||||
docker run --rm -t --privileged \
|
|
||||||
-v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \
|
|
||||||
-e DOCKER_EXPERIMENTAL=y \
|
|
||||||
--name docker-pr-exp$BUILD_NUMBER \
|
|
||||||
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
|
||||||
-e DOCKER_GRAPHDRIVER=overlay2 \
|
|
||||||
docker:${GITCOMMIT}-exp \
|
|
||||||
hack/ci/experimental
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
sh '''
|
|
||||||
echo "Ensuring container killed."
|
|
||||||
docker rm -vf docker-pr-exp$BUILD_NUMBER || true
|
|
||||||
|
|
||||||
echo "Chowning /workspace to jenkins user"
|
|
||||||
docker run --rm -v "$WORKSPACE:/workspace" busybox chown -R "$(id -u):$(id -g)" /workspace
|
|
||||||
'''
|
|
||||||
sh '''
|
|
||||||
echo "Creating bundles.tar.gz"
|
|
||||||
(find bundles -name '*.log' -o -name '*.prof' -o -name integration.test | xargs tar -czf experimental-bundles.tar.gz) || true
|
|
||||||
'''
|
|
||||||
sh '''
|
|
||||||
make clean
|
|
||||||
'''
|
|
||||||
archiveArtifacts artifacts: 'experimental-bundles.tar.gz'
|
|
||||||
deleteDir()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('z') {
|
|
||||||
when {
|
|
||||||
beforeAgent true
|
|
||||||
expression { params.z }
|
|
||||||
}
|
|
||||||
agent { label 's390x-ubuntu-1604' }
|
|
||||||
steps {
|
|
||||||
sh '''
|
|
||||||
GITCOMMIT=$(git rev-parse --short HEAD)
|
|
||||||
|
|
||||||
test -f Dockerfile.s390x && \
|
|
||||||
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker-s390x:$GITCOMMIT -f Dockerfile.s390x . || \
|
|
||||||
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker-s390x:$GITCOMMIT -f Dockerfile .
|
|
||||||
|
|
||||||
docker run --rm -t --privileged \
|
|
||||||
-v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \
|
|
||||||
--name docker-pr-s390x$BUILD_NUMBER \
|
|
||||||
-e DOCKER_GRAPHDRIVER=vfs \
|
|
||||||
-e TIMEOUT="300m" \
|
|
||||||
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
|
||||||
docker-s390x:$GITCOMMIT \
|
|
||||||
hack/ci/z
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
sh '''
|
|
||||||
echo "Ensuring container killed."
|
|
||||||
docker rm -vf docker-pr-s390x$BUILD_NUMBER || true
|
|
||||||
|
|
||||||
echo "Chowning /workspace to jenkins user"
|
|
||||||
docker run --rm -v "$WORKSPACE:/workspace" s390x/busybox chown -R "$(id -u):$(id -g)" /workspace
|
|
||||||
'''
|
|
||||||
sh '''
|
|
||||||
echo "Creating bundles.tar.gz"
|
|
||||||
find bundles -name '*.log' | xargs tar -czf s390x-bundles.tar.gz
|
|
||||||
'''
|
|
||||||
archiveArtifacts artifacts: 's390x-bundles.tar.gz'
|
|
||||||
deleteDir()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('powerpc') {
|
|
||||||
when {
|
|
||||||
beforeAgent true
|
|
||||||
expression { params.powerpc }
|
|
||||||
}
|
|
||||||
agent { label 'ppc64le-ubuntu-1604' }
|
|
||||||
steps {
|
|
||||||
sh '''
|
|
||||||
GITCOMMIT=$(git rev-parse --short HEAD)
|
|
||||||
|
|
||||||
test -f Dockerfile.ppc64le && \
|
|
||||||
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker-powerpc:$GITCOMMIT -f Dockerfile.ppc64le . || \
|
|
||||||
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker-powerpc:$GITCOMMIT -f Dockerfile .
|
|
||||||
|
|
||||||
docker run --rm -t --privileged \
|
|
||||||
-v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \
|
|
||||||
--name docker-pr-power$BUILD_NUMBER \
|
|
||||||
-e DOCKER_GRAPHDRIVER=vfs \
|
|
||||||
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
|
||||||
-e TIMEOUT="180m" \
|
|
||||||
docker-powerpc:$GITCOMMIT \
|
|
||||||
hack/ci/powerpc
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
sh '''
|
|
||||||
echo "Ensuring container killed."
|
|
||||||
docker rm -vf docker-pr-power$BUILD_NUMBER || true
|
|
||||||
|
|
||||||
echo "Chowning /workspace to jenkins user"
|
|
||||||
docker run --rm -v "$WORKSPACE:/workspace" ppc64le/busybox chown -R "$(id -u):$(id -g)" /workspace
|
|
||||||
'''
|
|
||||||
sh '''
|
|
||||||
echo "Creating bundles.tar.gz"
|
|
||||||
find bundles -name '*.log' | xargs tar -czf powerpc-bundles.tar.gz
|
|
||||||
'''
|
|
||||||
archiveArtifacts artifacts: 'powerpc-bundles.tar.gz'
|
|
||||||
deleteDir()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('vendor') {
|
|
||||||
when {
|
|
||||||
beforeAgent true
|
|
||||||
expression { params.vendor }
|
|
||||||
}
|
|
||||||
agent { label 'amd64 && ubuntu-1804 && overlay2' }
|
|
||||||
environment { DOCKER_BUILDKIT='1' }
|
|
||||||
steps {
|
|
||||||
sh '''
|
|
||||||
GITCOMMIT=$(git rev-parse --short HEAD)
|
|
||||||
|
|
||||||
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t dockerven:$GITCOMMIT .
|
|
||||||
|
|
||||||
docker run --rm -t --privileged \
|
|
||||||
--name dockerven-pr$BUILD_NUMBER \
|
|
||||||
-e DOCKER_GRAPHDRIVER=vfs \
|
|
||||||
-v "$WORKSPACE/.git:/go/src/github.com/docker/docker/.git" \
|
|
||||||
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
|
||||||
-e TIMEOUT=120m dockerven:$GITCOMMIT \
|
|
||||||
hack/validate/vendor
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('windowsRS1') {
|
|
||||||
when {
|
|
||||||
beforeAgent true
|
|
||||||
expression { params.windowsRS1 }
|
|
||||||
}
|
|
||||||
agent {
|
|
||||||
node {
|
|
||||||
label 'windows-rs1'
|
|
||||||
customWorkspace 'c:\\gopath\\src\\github.com\\docker\\docker'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
powershell '''
|
|
||||||
$ErrorActionPreference = 'Stop'
|
|
||||||
.\\hack\\ci\\windows.ps1
|
|
||||||
exit $LastExitCode
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('windowsRS5-process') {
|
|
||||||
when {
|
|
||||||
beforeAgent true
|
|
||||||
expression { params.windowsRS5 }
|
|
||||||
}
|
|
||||||
agent {
|
|
||||||
node {
|
|
||||||
label 'windows-rs5'
|
|
||||||
customWorkspace 'c:\\gopath\\src\\github.com\\docker\\docker'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
powershell '''
|
|
||||||
$ErrorActionPreference = 'Stop'
|
|
||||||
.\\hack\\ci\\windows.ps1
|
|
||||||
exit $LastExitCode
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
parallel {
|
||||||
|
stage('unit') {
|
||||||
|
when {
|
||||||
|
beforeAgent true
|
||||||
|
expression { params.unit }
|
||||||
|
}
|
||||||
|
agent { label 'amd64 && ubuntu-1804 && overlay2' }
|
||||||
|
environment { DOCKER_BUILDKIT = '1' }
|
||||||
|
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
# todo: include ip_vs in base image
|
||||||
|
sudo modprobe ip_vs
|
||||||
|
|
||||||
|
GITCOMMIT=$(git rev-parse --short HEAD)
|
||||||
|
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker:$GITCOMMIT .
|
||||||
|
|
||||||
|
docker run --rm -t --privileged \
|
||||||
|
-v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \
|
||||||
|
-v "$WORKSPACE/.git:/go/src/github.com/docker/docker/.git" \
|
||||||
|
--name docker-pr$BUILD_NUMBER \
|
||||||
|
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
||||||
|
-e DOCKER_GRAPHDRIVER=overlay2 \
|
||||||
|
docker:$GITCOMMIT \
|
||||||
|
hack/test/unit
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
junit 'bundles/junit-report.xml'
|
||||||
|
sh '''
|
||||||
|
echo 'Ensuring container killed.'
|
||||||
|
docker rm -vf docker-pr$BUILD_NUMBER || true
|
||||||
|
|
||||||
|
echo 'Chowning /workspace to jenkins user'
|
||||||
|
docker run --rm -v "$WORKSPACE:/workspace" busybox chown -R "$(id -u):$(id -g)" /workspace
|
||||||
|
|
||||||
|
echo 'Creating unit-bundles.tar.gz'
|
||||||
|
tar -czvf unit-bundles.tar.gz bundles/junit-report.xml bundles/go-test-report.json bundles/profile.out
|
||||||
|
'''
|
||||||
|
archiveArtifacts artifacts: 'unit-bundles.tar.gz'
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('janky') {
|
||||||
|
when {
|
||||||
|
beforeAgent true
|
||||||
|
expression { params.janky }
|
||||||
|
}
|
||||||
|
agent { label 'amd64 && ubuntu-1804 && overlay2' }
|
||||||
|
environment { DOCKER_BUILDKIT = '1' }
|
||||||
|
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
# todo: include ip_vs in base image
|
||||||
|
sudo modprobe ip_vs
|
||||||
|
|
||||||
|
GITCOMMIT=$(git rev-parse --short HEAD)
|
||||||
|
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker:$GITCOMMIT .
|
||||||
|
|
||||||
|
docker run --rm -t --privileged \
|
||||||
|
-v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \
|
||||||
|
-v "$WORKSPACE/.git:/go/src/github.com/docker/docker/.git" \
|
||||||
|
--name docker-pr$BUILD_NUMBER \
|
||||||
|
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
||||||
|
-e DOCKER_GRAPHDRIVER=overlay2 \
|
||||||
|
-e GIT_SHA1=${GIT_COMMIT} \
|
||||||
|
docker:$GITCOMMIT \
|
||||||
|
hack/ci/janky
|
||||||
|
'''
|
||||||
|
sh '''
|
||||||
|
GITCOMMIT=$(git rev-parse --short HEAD)
|
||||||
|
echo "Building e2e image"
|
||||||
|
docker build --build-arg DOCKER_GITCOMMIT=$GITCOMMIT -t moby-e2e-test -f Dockerfile.e2e .
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
sh '''
|
||||||
|
echo "Ensuring container killed."
|
||||||
|
docker rm -vf docker-pr$BUILD_NUMBER || true
|
||||||
|
|
||||||
|
echo "Chowning /workspace to jenkins user"
|
||||||
|
docker run --rm -v "$WORKSPACE:/workspace" busybox chown -R "$(id -u):$(id -g)" /workspace
|
||||||
|
'''
|
||||||
|
sh '''
|
||||||
|
echo "Creating janky-bundles.tar.gz"
|
||||||
|
(find bundles -name '*.log' -o -name '*.prof' -o -name integration.test | xargs tar -czf janky-bundles.tar.gz) || true
|
||||||
|
'''
|
||||||
|
archiveArtifacts artifacts: 'janky-bundles.tar.gz'
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('experimental') {
|
||||||
|
when {
|
||||||
|
beforeAgent true
|
||||||
|
expression { params.experimental }
|
||||||
|
}
|
||||||
|
agent { label 'amd64 && ubuntu-1804 && overlay2' }
|
||||||
|
environment { DOCKER_BUILDKIT = '1' }
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
GITCOMMIT=$(git rev-parse --short HEAD)
|
||||||
|
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker:${GITCOMMIT}-exp .
|
||||||
|
|
||||||
|
docker run --rm -t --privileged \
|
||||||
|
-v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \
|
||||||
|
-e DOCKER_EXPERIMENTAL=y \
|
||||||
|
--name docker-pr-exp$BUILD_NUMBER \
|
||||||
|
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
||||||
|
-e DOCKER_GRAPHDRIVER=overlay2 \
|
||||||
|
docker:${GITCOMMIT}-exp \
|
||||||
|
hack/ci/experimental
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
sh '''
|
||||||
|
echo "Ensuring container killed."
|
||||||
|
docker rm -vf docker-pr-exp$BUILD_NUMBER || true
|
||||||
|
|
||||||
|
echo "Chowning /workspace to jenkins user"
|
||||||
|
docker run --rm -v "$WORKSPACE:/workspace" busybox chown -R "$(id -u):$(id -g)" /workspace
|
||||||
|
'''
|
||||||
|
sh '''
|
||||||
|
echo "Creating bundles.tar.gz"
|
||||||
|
(find bundles -name '*.log' -o -name '*.prof' -o -name integration.test | xargs tar -czf experimental-bundles.tar.gz) || true
|
||||||
|
'''
|
||||||
|
sh '''
|
||||||
|
make clean
|
||||||
|
'''
|
||||||
|
archiveArtifacts artifacts: 'experimental-bundles.tar.gz'
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('z') {
|
||||||
|
when {
|
||||||
|
beforeAgent true
|
||||||
|
expression { params.z }
|
||||||
|
}
|
||||||
|
agent { label 's390x-ubuntu-1604' }
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
GITCOMMIT=$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
|
test -f Dockerfile.s390x && \
|
||||||
|
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker-s390x:$GITCOMMIT -f Dockerfile.s390x . || \
|
||||||
|
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker-s390x:$GITCOMMIT -f Dockerfile .
|
||||||
|
|
||||||
|
docker run --rm -t --privileged \
|
||||||
|
-v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \
|
||||||
|
--name docker-pr-s390x$BUILD_NUMBER \
|
||||||
|
-e DOCKER_GRAPHDRIVER=vfs \
|
||||||
|
-e TIMEOUT="300m" \
|
||||||
|
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
||||||
|
docker-s390x:$GITCOMMIT \
|
||||||
|
hack/ci/z
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
sh '''
|
||||||
|
echo "Ensuring container killed."
|
||||||
|
docker rm -vf docker-pr-s390x$BUILD_NUMBER || true
|
||||||
|
|
||||||
|
echo "Chowning /workspace to jenkins user"
|
||||||
|
docker run --rm -v "$WORKSPACE:/workspace" s390x/busybox chown -R "$(id -u):$(id -g)" /workspace
|
||||||
|
'''
|
||||||
|
sh '''
|
||||||
|
echo "Creating bundles.tar.gz"
|
||||||
|
find bundles -name '*.log' | xargs tar -czf s390x-bundles.tar.gz
|
||||||
|
'''
|
||||||
|
archiveArtifacts artifacts: 's390x-bundles.tar.gz'
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('powerpc') {
|
||||||
|
when {
|
||||||
|
beforeAgent true
|
||||||
|
expression { params.powerpc }
|
||||||
|
}
|
||||||
|
agent { label 'ppc64le-ubuntu-1604' }
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
GITCOMMIT=$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
|
test -f Dockerfile.ppc64le && \
|
||||||
|
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker-powerpc:$GITCOMMIT -f Dockerfile.ppc64le . || \
|
||||||
|
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t docker-powerpc:$GITCOMMIT -f Dockerfile .
|
||||||
|
|
||||||
|
docker run --rm -t --privileged \
|
||||||
|
-v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \
|
||||||
|
--name docker-pr-power$BUILD_NUMBER \
|
||||||
|
-e DOCKER_GRAPHDRIVER=vfs \
|
||||||
|
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
||||||
|
-e TIMEOUT="180m" \
|
||||||
|
docker-powerpc:$GITCOMMIT \
|
||||||
|
hack/ci/powerpc
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
sh '''
|
||||||
|
echo "Ensuring container killed."
|
||||||
|
docker rm -vf docker-pr-power$BUILD_NUMBER || true
|
||||||
|
|
||||||
|
echo "Chowning /workspace to jenkins user"
|
||||||
|
docker run --rm -v "$WORKSPACE:/workspace" ppc64le/busybox chown -R "$(id -u):$(id -g)" /workspace
|
||||||
|
'''
|
||||||
|
sh '''
|
||||||
|
echo "Creating bundles.tar.gz"
|
||||||
|
find bundles -name '*.log' | xargs tar -czf powerpc-bundles.tar.gz
|
||||||
|
'''
|
||||||
|
archiveArtifacts artifacts: 'powerpc-bundles.tar.gz'
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('vendor') {
|
||||||
|
when {
|
||||||
|
beforeAgent true
|
||||||
|
expression { params.vendor }
|
||||||
|
}
|
||||||
|
agent { label 'amd64 && ubuntu-1804 && overlay2' }
|
||||||
|
environment { DOCKER_BUILDKIT = '1' }
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
GITCOMMIT=$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
|
docker build --rm --force-rm --build-arg APT_MIRROR=cdn-fastly.deb.debian.org -t dockerven:$GITCOMMIT .
|
||||||
|
|
||||||
|
docker run --rm -t --privileged \
|
||||||
|
--name dockerven-pr$BUILD_NUMBER \
|
||||||
|
-e DOCKER_GRAPHDRIVER=vfs \
|
||||||
|
-v "$WORKSPACE/.git:/go/src/github.com/docker/docker/.git" \
|
||||||
|
-e DOCKER_GITCOMMIT=${GITCOMMIT} \
|
||||||
|
-e TIMEOUT=120m dockerven:$GITCOMMIT \
|
||||||
|
hack/validate/vendor
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('windowsRS1') {
|
||||||
|
when {
|
||||||
|
beforeAgent true
|
||||||
|
expression { params.windowsRS1 }
|
||||||
|
}
|
||||||
|
agent {
|
||||||
|
node {
|
||||||
|
label 'windows-rs1'
|
||||||
|
customWorkspace 'c:\\gopath\\src\\github.com\\docker\\docker'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
powershell '''
|
||||||
|
$ErrorActionPreference = 'Stop'
|
||||||
|
.\\hack\\ci\\windows.ps1
|
||||||
|
exit $LastExitCode
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('windowsRS5-process') {
|
||||||
|
when {
|
||||||
|
beforeAgent true
|
||||||
|
expression { params.windowsRS5 }
|
||||||
|
}
|
||||||
|
agent {
|
||||||
|
node {
|
||||||
|
label 'windows-rs5'
|
||||||
|
customWorkspace 'c:\\gopath\\src\\github.com\\docker\\docker'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
powershell '''
|
||||||
|
$ErrorActionPreference = 'Stop'
|
||||||
|
.\\hack\\ci\\windows.ps1
|
||||||
|
exit $LastExitCode
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue