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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 079CD1382C5 for ; Mon, 3 May 2021 07:28:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28030E0814; Mon, 3 May 2021 07:28:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63BA5E0814 for ; Mon, 3 May 2021 07:28:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70DD1335CEE for ; Mon, 3 May 2021 07:27:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E8DB63D for ; Mon, 3 May 2021 07:27:57 +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: <1620026627.afde5561b639eab659fef11a441bf4df1a9670f3.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 deploy.sh X-VCS-Directories: / .github/workflows/ X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: afde5561b639eab659fef11a441bf4df1a9670f3 X-VCS-Branch: master Date: Mon, 3 May 2021 07:27:57 +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: 64a36572-25c4-4746-abd1-d67381e5c9fe X-Archives-Hash: d17e8fd547924c374efe9add11dbe492 commit: afde5561b639eab659fef11a441bf4df1a9670f3 Author: Lino Bigatti protonmail com> AuthorDate: Sun May 2 12:36:05 2021 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Mon May 3 07:23:47 2021 +0000 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=afde5561 Add support for systemd and musl-hardened profiles to ppc64le. Closes: https://github.com/gentoo/gentoo-docker-images/pull/105 Signed-off-by: Alexys Jacob gentoo.org> .github/workflows/build.yml | 2 ++ deploy.sh | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4ce80e8..0f7349b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,6 +31,8 @@ jobs: - stage3-armv6j_hardfp - stage3-armv7a_hardfp - stage3-ppc64le + - stage3-ppc64le-musl-hardened + - stage3-ppc64le-systemd - stage3-s390x - stage3-x86 - stage3-x86-hardened diff --git a/deploy.sh b/deploy.sh index 8aa89a8..0a49525 100755 --- a/deploy.sh +++ b/deploy.sh @@ -22,10 +22,10 @@ declare -A MANIFEST_ARCHES=( [stage3:latest]="amd64;arm64;armv5tel;armv6j_hardfp;armv7a_hardfp;ppc64le;s390x;x86" [stage3:hardened]="amd64;x86" [stage3:hardened-nomultilib]="amd64" - [stage3:musl-hardened]="amd64" + [stage3:musl-hardened]="amd64;ppc64le" [stage3:musl-vanilla]="amd64;x86" [stage3:nomultilib]="amd64" - [stage3:systemd]="amd64;arm64;x86" + [stage3:systemd]="amd64;arm64;x86;ppc64le" [stage3:uclibc-hardened]="amd64;x86" [stage3:uclibc-vanilla]="amd64;x86" )