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 <[email protected]>
  • Loading branch information
silvin-lubecki committed May 20, 2020
1 parent bc462cf commit a49524b
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,20 @@ pipeline {
}
}
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("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("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 a49524b

Please sign in to comment.