aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2018-09-16 08:07:10 -0700
committerMatt Turner <mattst88@gentoo.org>2018-09-16 08:07:10 -0700
commit726e5fb33d9853d6dd4553d5a84f6ba1342e3445 (patch)
tree9a8a4ac51982338d4c3d6f295da729f70605dbe7
parentcatalyst-auto: Skip powerpc stage2 builds (diff)
downloadreleng-726e5fb33d9853d6dd4553d5a84f6ba1342e3445.tar.gz
releng-726e5fb33d9853d6dd4553d5a84f6ba1342e3445.tar.bz2
releng-726e5fb33d9853d6dd4553d5a84f6ba1342e3445.zip
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...
-rw-r--r--tools/catalyst-auto-ppc.conf2
-rw-r--r--tools/catalyst-auto-ppc64.conf2
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