From 10d36d3a0ee335cfef1b57aff5cd2ef82a268b2b Mon Sep 17 00:00:00 2001 From: mprahl Date: Fri, 9 Aug 2019 08:12:33 -0400 Subject: [PATCH] Pull the container images in parallel in the Jenkins job --- .cico-pr.pipeline | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.cico-pr.pipeline b/.cico-pr.pipeline index 61725175..e35161cd 100644 --- a/.cico-pr.pipeline +++ b/.cico-pr.pipeline @@ -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') {