From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4BD25138334 for ; Sun, 16 Sep 2018 15:10:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00766E09E6; Sun, 16 Sep 2018 15:10:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8F98E09E6 for ; Sun, 16 Sep 2018 15:10:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A0E3335CE7 for ; Sun, 16 Sep 2018 15:10:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA3E53C6 for ; Sun, 16 Sep 2018 15:10:04 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1537110430.726e5fb33d9853d6dd4553d5a84f6ba1342e3445.mattst88@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-ppc.conf tools/catalyst-auto-ppc64.conf X-VCS-Directories: tools/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 726e5fb33d9853d6dd4553d5a84f6ba1342e3445 X-VCS-Branch: master Date: Sun, 16 Sep 2018 15:10:04 +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: 084f6e63-d2fb-4d93-a0f4-f448a96ea59c X-Archives-Hash: 544447cbd304c163d5ad914b64c1fdfc commit: 726e5fb33d9853d6dd4553d5a84f6ba1342e3445 Author: Matt Turner gentoo org> AuthorDate: Sun Sep 16 15:07:10 2018 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Sep 16 15:07:10 2018 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=726e5fb3 catalyst-auto: Save powerpc builds in separate directories Otherwise we write the last_success_file when the first build succeeds and prevent the second from executing. Both of these sets of builds should probably be executed from the same catalyst-auto file... tools/catalyst-auto-ppc.conf | 2 +- tools/catalyst-auto-ppc64.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf index f35a2c12..71a4e840 100644 --- a/tools/catalyst-auto-ppc.conf +++ b/tools/catalyst-auto-ppc.conf @@ -36,7 +36,7 @@ convert_filename() { update_symlinks() { # Symlink the latest stages3 to build from local d f - for d in "${BUILD_SRCDIR_BASE}/builds/default" ; do + for d in "${BUILD_SRCDIR_BASE}/builds/default/ppc" ; do pushd "${d}" >/dev/null for f in $(ls stage3-ppc-*bz2 | grep -v latest | give_latest_from_dates) ; do local of=$(echo "${f}" | convert_filename) diff --git a/tools/catalyst-auto-ppc64.conf b/tools/catalyst-auto-ppc64.conf index 06ae2abe..9af46fc0 100644 --- a/tools/catalyst-auto-ppc64.conf +++ b/tools/catalyst-auto-ppc64.conf @@ -37,7 +37,7 @@ convert_filename() { update_symlinks() { # Symlink the latest stages3 to build from local d f t - for d in "${BUILD_SRCDIR_BASE}/builds/default" ; do + for d in "${BUILD_SRCDIR_BASE}/builds/default/ppc64" ; do pushd "${d}" >/dev/null for t in ppc64-64ul ppc64-32ul; do for f in $(ls stage3-${t}-*bz2 | grep -v latest | give_latest_from_dates) ; do