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-systemd/
Date: Fri, 02 Mar 2018 16:27:17
Message-Id: 1520008028.f3fb6696b11385be2646a45ee05670618500244f.blueness@gentoo
1 commit: f3fb6696b11385be2646a45ee05670618500244f
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 2 16:27:08 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 2 16:27:08 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=f3fb6696
7
8 tools-systemd: don't do parallel runs
9
10 tools-systemd/run.sh | 6 ++----
11 1 file changed, 2 insertions(+), 4 deletions(-)
12
13 diff --git a/tools-systemd/run.sh b/tools-systemd/run.sh
14 index 4535883c..9066d03d 100755
15 --- a/tools-systemd/run.sh
16 +++ b/tools-systemd/run.sh
17 @@ -47,10 +47,8 @@ main() {
18 # The parallelization `( do_stages ... ) &` doesn't work here
19 # if catalyst is using snapcache, bug #519656
20 for arch in amd64 i686; do
21 - (
22 - do_stages ${arch}
23 - [[ $? == 1 ]] && echo "FAILURE at ${arch}" | tee zzz.log
24 - ) &
25 + do_stages ${arch}
26 + [[ $? == 1 ]] && echo "FAILURE at ${arch}" | tee zzz.log
27 done
28 }