From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 62A1613829C for ; Sat, 4 Jun 2016 16:07:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB169E0785; Sat, 4 Jun 2016 16:07:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60E92E0785 for ; Sat, 4 Jun 2016 16:07:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 59B9D340BE6 for ; Sat, 4 Jun 2016 16:07:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48C4E972 for ; Sat, 4 Jun 2016 16:07:08 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1465056540.1ae8501b23c69338c3e9b25660ce7fde51f79e4c.blueness@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools-musl/ X-VCS-Repository: proj/releng X-VCS-Files: tools-musl/run.sh X-VCS-Directories: tools-musl/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 1ae8501b23c69338c3e9b25660ce7fde51f79e4c X-VCS-Branch: master Date: Sat, 4 Jun 2016 16:07:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 70fc726f-f4e1-4e23-bbde-2d65144881d6 X-Archives-Hash: b8b548bdc76e6e23ef506ce0d7953081 commit: 1ae8501b23c69338c3e9b25660ce7fde51f79e4c Author: Anthony G. Basile gentoo org> AuthorDate: Sat Jun 4 16:09:00 2016 +0000 Commit: Anthony G. Basile gentoo 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 &