commit: 1ae8501b23c69338c3e9b25660ce7fde51f79e4c
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 4 16:09:00 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Jun 4 16:09:00 2016 +0000
URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=1ae8501b
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 e84e6a6..cbd9b87 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 &