Jenkinsfile: move building e2e image to "unit-vendor" stage

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit efacee1cdd)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-08-03 17:24:31 +02:00
parent 04ca2e6b92
commit 970fb3c1df
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

16
Jenkinsfile vendored
View file

@ -77,6 +77,14 @@ pipeline {
'''
}
}
stage("Build e2e image") {
steps {
sh '''
echo "Building e2e image"
docker build --build-arg DOCKER_GITCOMMIT=${GIT_COMMIT} -t moby-e2e-test -f Dockerfile.e2e .
'''
}
}
}
post {
@ -149,14 +157,6 @@ pipeline {
'''
}
}
stage("Build e2e image") {
steps {
sh '''
echo "Building e2e image"
docker build --build-arg DOCKER_GITCOMMIT=${GIT_COMMIT} -t moby-e2e-test -f Dockerfile.e2e .
'''
}
}
}
post {