From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BDB3C15808C for ; Wed, 2 Mar 2022 11:25:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCC3D2BC04F; Wed, 2 Mar 2022 11:25:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C39C52BC04F for ; Wed, 2 Mar 2022 11:25:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 26241342EBE for ; Wed, 2 Mar 2022 11:25:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BF9C287 for ; Wed, 2 Mar 2022 11:25:08 +0000 (UTC) From: "Alexys Jacob" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexys Jacob" Message-ID: <1646220258.7d51c9af872c7277bfb07001ca3cd22dcb5b58cb.ultrabug@gentoo> Subject: [gentoo-commits] proj/docker-images:master commit in: .github/workflows/, / X-VCS-Repository: proj/docker-images X-VCS-Files: .github/workflows/build.yml README.md deploy.sh X-VCS-Directories: .github/workflows/ / X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: 7d51c9af872c7277bfb07001ca3cd22dcb5b58cb X-VCS-Branch: master Date: Wed, 2 Mar 2022 11:25:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 84f6711e-0401-4a97-97ed-58ebdb49316b X-Archives-Hash: 867bca0649e204cdeb233fce37445b9d commit: 7d51c9af872c7277bfb07001ca3cd22dcb5b58cb Author: Sam James gentoo org> AuthorDate: Sun Feb 20 23:36:37 2022 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Wed Mar 2 11:24:18 2022 +0000 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=7d51c9af Build arm64-musl image Bug: https://github.com/rui314/mold/issues/281 Signed-off-by: Sam James gentoo.org> Signed-off-by: Alexys Jacob gentoo.org> .github/workflows/build.yml | 1 + README.md | 1 + deploy.sh | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a58b93c..c177b11 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,6 +36,7 @@ jobs: - stage3-armv7a_hardfp-openrc - stage3-armv7a_hardfp-systemd - stage3-arm64 + - stage3-arm64-musl - stage3-arm64-systemd - stage3-i686-hardened-openrc - stage3-i686-musl diff --git a/README.md b/README.md index bc76134..5242b60 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ The following targets are built and pushed to Docker Hub: * `stage3-armv7a_hardfp-systemd` * `arm64` * `stage3-arm64` + * `stage3-arm64-musl` * `stage3-arm64-systemd` * `ppc` * `stage3-ppc64le-musl-hardened-openrc` diff --git a/deploy.sh b/deploy.sh index bd8ee55..1659f5e 100755 --- a/deploy.sh +++ b/deploy.sh @@ -20,7 +20,7 @@ declare -A MANIFEST_TAGS=( [stage3:desktop]="amd64-desktop-openrc" [stage3:hardened]="amd64-hardened-openrc;i686-hardened-openrc" [stage3:hardened-nomultilib]="amd64-hardened-nomultilib-openrc" - [stage3:musl]="amd64-musl;i686-musl" + [stage3:musl]="amd64-musl;arm64-musl;i686-musl" [stage3:musl-hardened]="amd64-musl-hardened;ppc64le-musl-hardened-openrc" [stage3:nomultilib]="amd64-nomultilib-openrc" [stage3:nomultilib-systemd]="amd64-nomultilib-systemd"