Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/releng:master commit in: tools-musl/
Date: Sat, 04 Jun 2016 16:07:12
Message-Id: 1465056540.1ae8501b23c69338c3e9b25660ce7fde51f79e4c.blueness@gentoo
1 commit: 1ae8501b23c69338c3e9b25660ce7fde51f79e4c
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 4 16:09:00 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 4 16:09:00 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=1ae8501b
7
8 tools-musl/run.sh: restore code accidentally removed
9
10 tools-musl/run.sh | 11 +++++++++++
11 1 file changed, 11 insertions(+)
12
13 diff --git a/tools-musl/run.sh b/tools-musl/run.sh
14 index e84e6a6..cbd9b87 100755
15 --- a/tools-musl/run.sh
16 +++ b/tools-musl/run.sh
17 @@ -52,6 +52,17 @@ main() {
18 prepare_confs ${arch} ${flavor}
19 done
20 done
21 +
22 + # The parallelization `( do_stages ... ) &` doesn't work here
23 + # if catalyst is using snapcache, bug #519656
24 + for arch in amd64 i686; do
25 + for flavor in hardened vanilla; do
26 + (
27 + do_stages ${arch} ${flavor}
28 + [[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
29 + ) &
30 + done
31 + done
32 }
33
34 main $1 &