pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/docker-playground/+/27735 )
Change subject: ttcn3-pgw: Parallel docker container stop ......................................................................
ttcn3-pgw: Parallel docker container stop
Stopping all the containers takes quite a lot of time. Let's stop them all in parallel to gain some time.
Change-Id: Iabf63ebdee9d1bf13a364ea3eb530ed9dae9b2a5 --- M ttcn3-pgw-test/jenkins.sh 1 file changed, 5 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/35/27735/1
diff --git a/ttcn3-pgw-test/jenkins.sh b/ttcn3-pgw-test/jenkins.sh index b9be265..2810899 100755 --- a/ttcn3-pgw-test/jenkins.sh +++ b/ttcn3-pgw-test/jenkins.sh @@ -84,10 +84,11 @@ $REPO_USER/ttcn3-pgw-test
# stop uecups + PGW after test has completed -docker container stop ${BUILD_TAG}-uecups -docker container stop ${BUILD_TAG}-smf -docker container stop ${BUILD_TAG}-upf -docker container stop ${BUILD_TAG}-nrf +docker container stop \ + ${BUILD_TAG}-uecups \ + ${BUILD_TAG}-smf \ + ${BUILD_TAG}-upf \ + ${BUILD_TAG}-nrf
network_remove collect_logs