Add m68k systemd merged-usr build

Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
This commit is contained in:
Andreas K. Hüttel 2022-11-17 02:52:59 +01:00
parent 054f29e53f
commit 3a3df35519
No known key found for this signature in database
GPG key ID: DC2B16215ED5412A
3 changed files with 38 additions and 2 deletions

View file

@ -0,0 +1,13 @@
subarch: m68k
version_stamp: systemd-mergedusr-@TIMESTAMP@
target: stage1
rel_type: default
profile: default/linux/m68k/17.0/systemd/merged-usr
snapshot: @TIMESTAMP@
source_subpath: default/stage3-m68k-systemd-mergedusr-latest
compression_mode: pixz
update_seed: no
update_seed_command: -uDN @world
portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
portage_prefix: releng
interpreter: /usr/bin/qemu-m68k

View file

@ -0,0 +1,11 @@
subarch: m68k
version_stamp: systemd-mergedusr-@TIMESTAMP@
target: stage3
rel_type: default
profile: default/linux/m68k/17.0/systemd/merged-usr
snapshot: @TIMESTAMP@
source_subpath: default/stage1-m68k-systemd-mergedusr-@TIMESTAMP@
compression_mode: pixz
portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
portage_prefix: releng
interpreter: /usr/bin/qemu-m68k

View file

@ -13,10 +13,12 @@ EMAIL_SUBJECT_PREPEND="[m68k-qemu-auto]"
SETS="
openrc
systemd
systemd_mu
"
SET_openrc_SPECS="stage1-openrc.spec stage3-openrc.spec"
SET_systemd_SPECS="stage1-systemd.spec stage3-systemd.spec"
SET_systemd_mu_SPECS="stage1-systemd-mu.spec stage3-systemd-mu.spec"
update_symlinks() {
# Symlink the latest stages3 to build from
@ -35,9 +37,19 @@ post_build() {
local set=$1 spec=$2
case ${spec} in
stage3*.spec)
stage3-openrc.spec)
pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
upload stage3-m68k-$(echo ${spec}|sed -e 's:^stage3-::g' -e 's:\.spec$::g')-${TIMESTAMP}*.xz*
upload stage3-m68k-openrc-${TIMESTAMP}*.xz*
popd >/dev/null
;;
stage3-systemd.spec)
pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
upload stage3-m68k-systemd-${TIMESTAMP}*.xz*
popd >/dev/null
;;
stage3-systemd-mu.spec)
pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
upload stage3-m68k-systemd-mergedusr-${TIMESTAMP}*.xz*
popd >/dev/null
;;
*)