Stop building arm64 systemd split-usr stages

Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
This commit is contained in:
Andreas K. Hüttel 2023-12-14 23:23:33 +01:00
parent fa0c9c53e6
commit a1b5b9afd0
No known key found for this signature in database
GPG key ID: DC2B16215ED5412A

View file

@ -41,7 +41,7 @@ EMAIL_SUBJECT_PREPEND="[${SUBARCH}-auto]"
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" "${BUILD_SRCDIR_BASE}/builds/mergedusr" "${BUILD_SRCDIR_BASE}/builds/llvm" "${BUILD_SRCDIR_BASE}/builds/llvm-mergedusr" "${BUILD_SRCDIR_BASE}/builds/musl" "${BUILD_SRCDIR_BASE}/builds/musl-hardened" "${BUILD_SRCDIR_BASE}/builds/musl-llvm"; do for d in "${BUILD_SRCDIR_BASE}/builds"/* ; do
mkdir -p "${d}" mkdir -p "${d}"
pushd "${d}" >/dev/null pushd "${d}" >/dev/null
for f in $(ls stage3-${SUBARCH}-*xz | grep -v latest | give_latest_from_dates) ; do for f in $(ls stage3-${SUBARCH}-*xz | grep -v latest | give_latest_from_dates) ; do
@ -62,17 +62,11 @@ post_build() {
;; ;;
stage3-openrc.spec) stage3-openrc.spec)
upload stage3-${SUBARCH}-openrc-${TIMESTAMP}*.xz* upload stage3-${SUBARCH}-openrc-${TIMESTAMP}*.xz*
# do not upsync_binpackages, done by extra builder
;; ;;
stage3d-openrc.spec) stage3d-openrc.spec)
upload stage3-${SUBARCH}-desktop-openrc-${TIMESTAMP}*.xz* upload stage3-${SUBARCH}-desktop-openrc-${TIMESTAMP}*.xz*
;; ;;
stage3-systemd.spec)
upload stage3-${SUBARCH}-systemd-${TIMESTAMP}*.xz*
# do not upsync_binpackages, done by extra builder
;;
stage3d-systemd.spec)
upload stage3-${SUBARCH}-desktop-systemd-${TIMESTAMP}*.xz*
;;
esac esac
popd >/dev/null popd >/dev/null
@ -91,9 +85,6 @@ post_build() {
case ${spec} in case ${spec} in
llvm/stage3-openrc.spec) llvm/stage3-openrc.spec)
upload stage3-${SUBARCH}-llvm-openrc-${TIMESTAMP}*.xz* upload stage3-${SUBARCH}-llvm-openrc-${TIMESTAMP}*.xz*
;;
llvm/stage3-systemd.spec)
upload stage3-${SUBARCH}-llvm-systemd-${TIMESTAMP}*.xz*
upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/llvm/stage3-arm64" arm64/17.0/arm64_llvm upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/llvm/stage3-arm64" arm64/17.0/arm64_llvm
;; ;;
esac esac