tools/ppc64le: Handle musl-hardened/ directory
Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
parent
52c8dd02d4
commit
af8ffec8e7
1 changed files with 6 additions and 6 deletions
|
@ -20,7 +20,7 @@ EMAIL_SUBJECT_PREPEND="[ppc64le-auto]"
|
||||||
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" "${BUILD_SRCDIR_BASE}/builds/musl-hardened"; do
|
||||||
pushd "${d}" >/dev/null
|
pushd "${d}" >/dev/null
|
||||||
for t in ppc64le; do
|
for t in ppc64le; do
|
||||||
for f in $(ls stage3-${t}-*xz | grep -v latest | give_latest_from_dates) ; do
|
for f in $(ls stage3-${t}-*xz | grep -v latest | give_latest_from_dates) ; do
|
||||||
|
@ -39,20 +39,20 @@ upload() {
|
||||||
post_build() {
|
post_build() {
|
||||||
local set=$1 spec=$2
|
local set=$1 spec=$2
|
||||||
|
|
||||||
pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
|
pushd "${BUILD_SRCDIR_BASE}/builds" >/dev/null
|
||||||
|
|
||||||
case ${spec} in
|
case ${spec} in
|
||||||
installcd-stage2-minimal.spec)
|
installcd-stage2-minimal.spec)
|
||||||
upload *${TIMESTAMP}*.iso*
|
upload default/*${TIMESTAMP}*.iso*
|
||||||
;;
|
;;
|
||||||
stage3*.spec)
|
stage3*.spec)
|
||||||
upload stage3-ppc64le-${TIMESTAMP}*.xz*
|
upload default/stage3-ppc64le-${TIMESTAMP}*.xz*
|
||||||
;;
|
;;
|
||||||
systemd-stage3*.spec)
|
systemd-stage3*.spec)
|
||||||
upload stage3-ppc64le-systemd-${TIMESTAMP}*.xz*
|
upload default/stage3-ppc64le-systemd-${TIMESTAMP}*.xz*
|
||||||
;;
|
;;
|
||||||
musl-hardened-stage3*.spec)
|
musl-hardened-stage3*.spec)
|
||||||
upload stage3-ppc64le-musl-hardened-${TIMESTAMP}*.xz*
|
upload musl-hardened/stage3-ppc64le-musl-hardened-${TIMESTAMP}*.xz*
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue