Pull the container images in parallel in the Jenkins job

This commit is contained in:
mprahl
2019-08-09 08:12:33 -04:00
parent 13a18d1d5a
commit 10d36d3a0e

View File

@@ -59,8 +59,14 @@ node('factory2'){
}
stage('Pull Container Images') {
onmyduffynode 'docker pull quay.io/factory2/mbs-test-centos'
onmyduffynode 'docker pull quay.io/factory2/mbs-test-fedora'
parallel {
stage('Pull quay.io/factory2/mbs-test-centos') {
onmyduffynode 'docker pull quay.io/factory2/mbs-test-centos'
}
stage('Pull quay.io/factory2/mbs-test-fedora') {
onmyduffynode 'docker pull quay.io/factory2/mbs-test-fedora'
}
}
}
stage('Run Test Suites') {