Enable amd64 23.0 musl builds

Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
This commit is contained in:
Andreas K. Hüttel 2024-03-07 19:44:53 +01:00
parent c027fd740c
commit 9ef2ef41be
No known key found for this signature in database
GPG key ID: DC2B16215ED5412A

View file

@ -36,6 +36,9 @@ SETS="
hardened_systemd_23 hardened_systemd_23
hardened_selinux_openrc_23 hardened_selinux_openrc_23
hardened_selinux_systemd_23 hardened_selinux_systemd_23
musl_23
musl_hardened_23
musl_llvm_23
x32_openrc_23 x32_openrc_23
x32_systemd_23 x32_systemd_23
" "
@ -101,6 +104,12 @@ SET_llvm_openrc_23_SPECS="llvm/stage1-openrc-23.spec llvm/stage3-openrc-23.spec"
SET_llvm_systemd_23_SPECS="llvm/stage1-systemd-23.spec llvm/stage3-systemd-23.spec" SET_llvm_systemd_23_SPECS="llvm/stage1-systemd-23.spec llvm/stage3-systemd-23.spec"
SET_musl_23_SPECS="musl/stage1-23.spec musl/stage3-23.spec"
SET_musl_llvm_23_SPECS="musl-llvm/stage1-23.spec musl-llvm/stage3-23.spec"
SET_musl_hardened_23_SPECS="musl-hardened/stage1-23.spec musl-hardened/stage3-23.spec"
SET_x32_openrc_23_SPECS="x32/stage1-openrc-23.spec x32/stage3-openrc-23.spec" SET_x32_openrc_23_SPECS="x32/stage1-openrc-23.spec x32/stage3-openrc-23.spec"
SET_x32_systemd_23_SPECS="x32/stage1-systemd-23.spec x32/stage3-systemd-23.spec" SET_x32_systemd_23_SPECS="x32/stage1-systemd-23.spec x32/stage3-systemd-23.spec"
@ -250,6 +259,14 @@ post_build() {
esac esac
popd >/dev/null || exit popd >/dev/null || exit
pushd "${BUILD_SRCDIR_BASE}"/builds/23.0-musl >/dev/null || exit
case ${spec} in
musl/stage3-23.spec)
upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-musl/stage3-amd64" amd64/23.0/x86-64_musl
;;
esac
popd >/dev/null || exit
pushd "${BUILD_SRCDIR_BASE}"/builds/musl-clang >/dev/null || exit pushd "${BUILD_SRCDIR_BASE}"/builds/musl-clang >/dev/null || exit
case ${spec} in case ${spec} in
musl-clang/stage3.spec) musl-clang/stage3.spec)
@ -259,6 +276,14 @@ post_build() {
esac esac
popd >/dev/null || exit popd >/dev/null || exit
pushd "${BUILD_SRCDIR_BASE}"/builds/23.0-musl-llvm >/dev/null || exit
case ${spec} in
musl-llvm/stage3-23.spec)
upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-musl-llvm/stage3-amd64" amd64/23.0/x86-64_musl_llvm
;;
esac
popd >/dev/null || exit
pushd "${BUILD_SRCDIR_BASE}"/builds/musl-hardened >/dev/null || exit pushd "${BUILD_SRCDIR_BASE}"/builds/musl-hardened >/dev/null || exit
case ${spec} in case ${spec} in
musl-hardened/stage3.spec) musl-hardened/stage3.spec)
@ -267,6 +292,14 @@ post_build() {
;; ;;
esac esac
popd >/dev/null || exit popd >/dev/null || exit
pushd "${BUILD_SRCDIR_BASE}"/builds/23.0-musl-hardened >/dev/null || exit
case ${spec} in
musl-hardened/stage3-23.spec)
upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-musl-hardened/stage3-amd64" amd64/23.0/x86-64_musl_hardened
;;
esac
popd >/dev/null || exit
} }
# vim:ft=sh: # vim:ft=sh: