Move hppa merged-usr builds to separate build types

Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
This commit is contained in:
Andreas K. Hüttel 2022-11-23 22:18:20 +01:00
parent 41b326db87
commit cc592e180a
No known key found for this signature in database
GPG key ID: DC2B16215ED5412A
5 changed files with 23 additions and 23 deletions

View file

@ -28,7 +28,7 @@ EMAIL_SUBJECT_PREPEND="[hppa-auto]"
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" "${BUILD_SRCDIR_BASE}/builds/mergedusr" ; do
mkdir -p "${d}"
pushd "${d}" >/dev/null
for t in hppa1.1 hppa2.0; do
@ -45,7 +45,6 @@ post_build() {
local set=$1 spec=$2
pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
case ${spec} in
netboot-hppa32.spec)
mv netboot-hppa1.1-${TIMESTAMP}/netboot32-hppa.lif netboot-hppa1.1-${TIMESTAMP}/netboot-hppa32-${TIMESTAMP}.lif
@ -59,27 +58,28 @@ post_build() {
upload install-hppa-minimal-*${TIMESTAMP}*.iso*
;;
hppa1.1/stage3-openrc.spec)
upload stage3-hppa1.1-openrc-*${TIMESTAMP}*.xz*
upload stage3-hppa1.1-openrc-${TIMESTAMP}.xz*
;;
hppa1.1/stage3-systemd.spec)
upload stage3-hppa1.1-systemd-*${TIMESTAMP}*.xz*
;;
hppa1.1/stage3-systemd-mu.spec)
upload stage3-hppa1.1-systemd-mergedusr-*${TIMESTAMP}*.xz*
upload stage3-hppa1.1-systemd-${TIMESTAMP}.xz*
;;
hppa2.0/stage3-openrc.spec)
upload stage3-hppa2.0-openrc-*${TIMESTAMP}*.xz*
upload stage3-hppa2.0-openrc-${TIMESTAMP}.xz*
;;
hppa2.0/stage3-systemd.spec)
upload stage3-hppa2.0-systemd-*${TIMESTAMP}*.xz*
;;
hppa2.0/stage3-systemd-mu.spec)
upload stage3-hppa2.0-systemd-mergedusr-*${TIMESTAMP}*.xz*
;;
*)
echo "Finished ${spec}"
upload stage3-hppa2.0-systemd-${TIMESTAMP}.xz*
;;
esac
popd >/dev/null
pushd "${BUILD_SRCDIR_BASE}/builds/mergedusr" >/dev/null
case ${spec} in
hppa1.1/stage3-systemd-mu.spec)
upload stage3-hppa1.1-systemd-mergedusr-${TIMESTAMP}.xz*
;;
hppa2.0/stage3-systemd-mu.spec)
upload stage3-hppa2.0-systemd-mergedusr-${TIMESTAMP}.xz*
;;
esac
popd >/dev/null
}