x86: Add specs and catalyst-auto job for musl

Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
This commit is contained in:
Andreas K. Hüttel 2021-07-06 00:57:04 +02:00
parent 9f5c1be393
commit 1e54abd4ff
No known key found for this signature in database
GPG key ID: 4C49F79E54D0A206
4 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,14 @@
subarch: i686
target: stage1
version_stamp: musl-@TIMESTAMP@
rel_type: musl
profile: default/linux/x86/17.0/musl
snapshot: @TIMESTAMP@
source_subpath: musl/stage3-i686-musl-latest
chost: i686-gentoo-linux-musl
portage_confdir: @REPO_DIR@/releases/portage/stages-musl
portage_overlay: /root/musl
portage_prefix: releng
update_seed: yes
update_seed_command: --update --deep --newuse @world
compression_mode: pixz_x

View file

@ -0,0 +1,12 @@
subarch: i686
target: stage2
version_stamp: musl-@TIMESTAMP@
rel_type: musl
profile: default/linux/x86/17.0/musl
snapshot: @TIMESTAMP@
source_subpath: musl/stage1-i686-musl-@TIMESTAMP@
chost: i686-gentoo-linux-musl
portage_confdir: @REPO_DIR@/releases/portage/stages-musl
portage_overlay: /root/musl
portage_prefix: releng
compression_mode: pixz_x

View file

@ -0,0 +1,11 @@
subarch: i686
target: stage3
version_stamp: musl-@TIMESTAMP@
rel_type: musl
profile: default/linux/x86/17.0/musl
snapshot: @TIMESTAMP@
source_subpath: musl/stage2-i686-musl-@TIMESTAMP@
portage_confdir: @REPO_DIR@/releases/portage/stages-musl
portage_overlay: /root/musl
portage_prefix: releng
compression_mode: pixz_x

View file

@ -12,6 +12,7 @@ EMAIL_SUBJECT_PREPEND="[x86-auto]"
SPECS_DIR=${REPO_DIR}/releases/specs/x86
SETS="
musl
i486_openrc
i686_openrc
i686_systemd
@ -27,6 +28,8 @@ SET_i686_systemd_SPECS="i686/stage1-systemd.spec i686/stage2-systemd.spec i686/s
SET_hardened_openrc_SPECS="hardened/stage1-openrc.spec hardened/stage2-openrc.spec hardened/stage3-openrc.spec"
SET_hardened_openrc_OPTIONAL_SPECS="hardened/admincd-stage1-openrc.spec hardened/admincd-stage2-openrc.spec"
SET_musl_SPECS="musl/stage1.spec musl/stage2.spec musl/stage3.spec"
KCONFIG_DIR=${REPO_DIR}/releases/kconfig/x86
EXTENSIONS="@(.tar.xz|.tar.bz2|.tar.gz|.tar|.sfs)"
@ -84,6 +87,14 @@ post_build() {
;;
esac
popd >/dev/null || exit
pushd ${BUILD_SRCDIR_BASE}/builds/musl >/dev/null || exit
case ${spec} in
musl/stage3.spec)
upload stage3-i686-musl-${TIMESTAMP}.tar.xz*
;;
esac
popd >/dev/null || exit
}
# vim:ft=sh: