Skip to content

Commit

Permalink
Remove parallel from Jenkinsfile, as the e2e framework is not tailore…
Browse files Browse the repository at this point in the history
…d for than (container name clash, port clash,...)

Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
  • Loading branch information
silvin-lubecki committed May 20, 2020
1 parent bc462cf commit 3ba57a4
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,19 @@ pipeline {
sh "docker info"
}
}
stage("end-to-end test suite") {
parallel {
stage("stable engine") {
steps {
sh "E2E_UNIQUE_ID=clie2e${BUILD_NUMBER} \
IMAGE_TAG=clie2e${BUILD_NUMBER} \
DOCKER_BUILDKIT=1 make -f docker.Makefile test-e2e"
}
}
stage("18.09 engine") {
steps {
sh "E2E_ENGINE_VERSION=18.09-dind \
E2E_UNIQUE_ID=clie2e${BUILD_NUMBER} \
IMAGE_TAG=clie2e${BUILD_NUMBER} \
DOCKER_BUILDKIT=1 make -f docker.Makefile test-e2e"
}
}
stage("End-to-end test suite: stable engine") {
steps {
sh "E2E_UNIQUE_ID=clie2e${BUILD_NUMBER} \
IMAGE_TAG=clie2e${BUILD_NUMBER} \
DOCKER_BUILDKIT=1 make -f docker.Makefile test-e2e"
}
}
stage("End-to-end test suite: 18.09 engine") {
steps {
sh "E2E_ENGINE_VERSION=18.09-dind \
E2E_UNIQUE_ID=clie2e${BUILD_NUMBER} \
IMAGE_TAG=clie2e${BUILD_NUMBER} \
DOCKER_BUILDKIT=1 make -f docker.Makefile test-e2e"
}
}
}
Expand Down

0 comments on commit 3ba57a4

Please sign in to comment.