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...
This commit is contained in:
parent
630f0be613
commit
726e5fb33d
2 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ convert_filename() {
|
||||||
update_symlinks() {
|
update_symlinks() {
|
||||||
# Symlink the latest stages3 to build from
|
# Symlink the latest stages3 to build from
|
||||||
local d f
|
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
|
pushd "${d}" >/dev/null
|
||||||
for f in $(ls stage3-ppc-*bz2 | grep -v latest | give_latest_from_dates) ; do
|
for f in $(ls stage3-ppc-*bz2 | grep -v latest | give_latest_from_dates) ; do
|
||||||
local of=$(echo "${f}" | convert_filename)
|
local of=$(echo "${f}" | convert_filename)
|
||||||
|
|
|
@ -37,7 +37,7 @@ convert_filename() {
|
||||||
update_symlinks() {
|
update_symlinks() {
|
||||||
# Symlink the latest stages3 to build from
|
# Symlink the latest stages3 to build from
|
||||||
local d f t
|
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
|
pushd "${d}" >/dev/null
|
||||||
for t in ppc64-64ul ppc64-32ul; do
|
for t in ppc64-64ul ppc64-32ul; do
|
||||||
for f in $(ls stage3-${t}-*bz2 | grep -v latest | give_latest_from_dates) ; do
|
for f in $(ls stage3-${t}-*bz2 | grep -v latest | give_latest_from_dates) ; do
|
||||||
|
|
Loading…
Add table
Reference in a new issue