Move x86 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-25 15:37:27 +01:00
parent 29221be892
commit 0f125915c6
No known key found for this signature in database
GPG key ID: DC2B16215ED5412A
3 changed files with 10 additions and 5 deletions

View file

@ -39,7 +39,7 @@ EXTENSIONS="@(.tar.xz|.tar.bz2|.tar.gz|.tar|.sfs)"
update_symlinks() {
# Symlink the latest stages3 to build from
for d in ${BUILD_SRCDIR_BASE}/builds/{default,hardened,musl} ; do
for d in ${BUILD_SRCDIR_BASE}/builds/{default,hardened,musl,mergedusr} ; do
mkdir -p "${d}"
pushd "${d}" >/dev/null || exit
shopt -s extglob
@ -80,6 +80,11 @@ post_build() {
i686/stage3-systemd.spec)
upload stage3-i686-systemd-${TIMESTAMP}.tar.xz*
;;
esac
popd >/dev/null || exit
pushd ${BUILD_SRCDIR_BASE}/builds/mergedusr >/dev/null || exit
case ${spec} in
i686/stage3-systemd-mu.spec)
upload stage3-i686-systemd-mergedusr-${TIMESTAMP}.tar.xz*
;;