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 5B82C15808B for ; Wed, 2 Mar 2022 11:25:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9AB82BC04E; Wed, 2 Mar 2022 11:25:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C1B7E2BC04E for ; Wed, 2 Mar 2022 11:25:11 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3B54D342ED5 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 2F02C2FA 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: <1646220261.2d6db82c10268ee20b7ced2e32e013142ded4b2b.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: 2d6db82c10268ee20b7ced2e32e013142ded4b2b 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: 9f3bf3c6-9c1d-4193-b979-000532b99fb8 X-Archives-Hash: 4768829aab463ee4a0a40b2c99bca027 commit: 2d6db82c10268ee20b7ced2e32e013142ded4b2b Author: Sam James gentoo org> AuthorDate: Sun Feb 20 23:38:40 2022 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Wed Mar 2 11:24:21 2022 +0000 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=2d6db82c Build armv7a_hardfp_musl-openrc image Signed-off-by: Sam James gentoo.org> Closes: https://github.com/gentoo/gentoo-docker-images/pull/118 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 c177b11..a2284dd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,7 @@ jobs: - stage3-armv6j_hardfp-systemd - stage3-armv7a-openrc - stage3-armv7a-systemd + - stage3-armv7a_hardfp_musl-openrc - stage3-armv7a_hardfp-openrc - stage3-armv7a_hardfp-systemd - stage3-arm64 diff --git a/README.md b/README.md index 5242b60..a95ee11 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ The following targets are built and pushed to Docker Hub: * `stage3-armv6j_hardfp-systemd` * `stage3-armv7a-openrc` * `stage3-armv7a-systemd` + * `stage3-armv7a_hardfp_musl-openrc` * `stage3-armv7a_hardfp-openrc` * `stage3-armv7a_hardfp-systemd` * `arm64` diff --git a/deploy.sh b/deploy.sh index 1659f5e..eb584f5 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;arm64-musl;i686-musl" + [stage3:musl]="amd64-musl;armv7a_hardfp_musl-openrc;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"