From 1ae8501b23c69338c3e9b25660ce7fde51f79e4c Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Sat, 4 Jun 2016 12:09:00 -0400 Subject: [PATCH] tools-musl/run.sh: restore code accidentally removed --- tools-musl/run.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tools-musl/run.sh b/tools-musl/run.sh index e84e6a62..cbd9b875 100755 --- a/tools-musl/run.sh +++ b/tools-musl/run.sh @@ -52,6 +52,17 @@ main() { prepare_confs ${arch} ${flavor} done done + + # The parallelization `( do_stages ... ) &` doesn't work here + # if catalyst is using snapcache, bug #519656 + for arch in amd64 i686; do + for flavor in hardened vanilla; do + ( + do_stages ${arch} ${flavor} + [[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log + ) & + done + done } main $1 &