From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1608346-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9AC9C158041 for <garchives@archives.gentoo.org>; Thu, 7 Mar 2024 18:45:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B8D0E29B7; Thu, 7 Mar 2024 18:45:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0A0DAE29B7 for <gentoo-commits@lists.gentoo.org>; Thu, 7 Mar 2024 18:45:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4ADCF33BEED for <gentoo-commits@lists.gentoo.org>; Thu, 7 Mar 2024 18:45:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A837810B0 for <gentoo-commits@lists.gentoo.org>; Thu, 7 Mar 2024 18:45:16 +0000 (UTC) From: "Andreas K. Hüttel" <dilfridge@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" <dilfridge@gentoo.org> Message-ID: <1709837093.9ef2ef41be26743ddcae0bcdafb898a5612c3a96.dilfridge@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-amd64.conf X-VCS-Directories: tools/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 9ef2ef41be26743ddcae0bcdafb898a5612c3a96 X-VCS-Branch: master Date: Thu, 7 Mar 2024 18:45:16 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c086ed12-b042-4ea8-855f-cc83d2453f26 X-Archives-Hash: be8fed4f08a921629710be23ebb03ff0 commit: 9ef2ef41be26743ddcae0bcdafb898a5612c3a96 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> AuthorDate: Thu Mar 7 18:44:53 2024 +0000 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Thu Mar 7 18:44:53 2024 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=9ef2ef41 Enable amd64 23.0 musl builds Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org> tools/catalyst-auto-amd64.conf | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/tools/catalyst-auto-amd64.conf b/tools/catalyst-auto-amd64.conf index ad73c416..75a0f9cc 100644 --- a/tools/catalyst-auto-amd64.conf +++ b/tools/catalyst-auto-amd64.conf @@ -36,6 +36,9 @@ SETS=" hardened_systemd_23 hardened_selinux_openrc_23 hardened_selinux_systemd_23 + musl_23 + musl_hardened_23 + musl_llvm_23 x32_openrc_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_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_systemd_23_SPECS="x32/stage1-systemd-23.spec x32/stage3-systemd-23.spec" @@ -250,6 +259,14 @@ post_build() { esac 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 case ${spec} in musl-clang/stage3.spec) @@ -259,6 +276,14 @@ post_build() { esac 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 case ${spec} in musl-hardened/stage3.spec) @@ -267,6 +292,14 @@ post_build() { ;; esac 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: