Skip to content

Commit

Permalink
Jenkinsfile: set DOCKER_BUILDKIT globally
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
  • Loading branch information
thaJeztah committed Aug 2, 2019
1 parent a28f2a2 commit f648964
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ pipeline {
booleanParam(name: 'windowsRS5', defaultValue: false, description: 'Windows 2019 (RS5) Build/Test')
}
environment {
DOCKER_BUILDKIT = '1'
APT_MIRROR = 'cdn-fastly.deb.debian.org'
}
stages {
Expand All @@ -29,7 +30,6 @@ pipeline {
expression { params.unit }
}
agent { label 'amd64 && ubuntu-1804 && overlay2' }
environment { DOCKER_BUILDKIT = '1' }

steps {
sh '''
Expand Down Expand Up @@ -73,7 +73,6 @@ pipeline {
expression { params.janky }
}
agent { label 'amd64 && ubuntu-1804 && overlay2' }
environment { DOCKER_BUILDKIT = '1' }

steps {
sh '''
Expand Down Expand Up @@ -123,7 +122,6 @@ pipeline {
expression { params.experimental }
}
agent { label 'amd64 && ubuntu-1804 && overlay2' }
environment { DOCKER_BUILDKIT = '1' }
steps {
sh '''
GITCOMMIT=$(git rev-parse --short HEAD)
Expand Down Expand Up @@ -246,7 +244,6 @@ pipeline {
expression { params.vendor }
}
agent { label 'amd64 && ubuntu-1804 && overlay2' }
environment { DOCKER_BUILDKIT = '1' }
steps {
sh '''
GITCOMMIT=$(git rev-parse --short HEAD)
Expand Down

0 comments on commit f648964

Please sign in to comment.