From 151b14d68f31c86b08f8a99a1d6c01793562623e Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Wed, 9 Mar 2016 05:02:33 -0500 Subject: [PATCH] tools-systemd: do parallel runs of amd64 and i686 --- tools-systemd/run-systemd.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools-systemd/run-systemd.sh b/tools-systemd/run-systemd.sh index abf901ec..064700fb 100755 --- a/tools-systemd/run-systemd.sh +++ b/tools-systemd/run-systemd.sh @@ -40,8 +40,10 @@ main() { # The parallelization `( do_stages ... ) &` doesn't work here # if catalyst is using snapcache, bug #519656 for arch in amd64 i686; do - do_stages ${arch} - [[ $? == 1 ]] && echo "FAILURE at ${arch}" | tee zzz.log + ( + do_stages ${arch} + [[ $? == 1 ]] && echo "FAILURE at ${arch}" | tee zzz.log + ) & done }