Gentoo Archives: gentoo-commits

From: Alexys Jacob <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/docker-images:master commit in: .github/workflows/, /
Date: Mon, 03 May 2021 07:28:02
Message-Id: 1620026627.afde5561b639eab659fef11a441bf4df1a9670f3.ultrabug@gentoo
1 commit: afde5561b639eab659fef11a441bf4df1a9670f3
2 Author: Lino Bigatti <linobigatti <AT> protonmail <DOT> com>
3 AuthorDate: Sun May 2 12:36:05 2021 +0000
4 Commit: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
5 CommitDate: Mon May 3 07:23:47 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=afde5561
7
8 Add support for systemd and musl-hardened profiles to ppc64le.
9
10 Closes: https://github.com/gentoo/gentoo-docker-images/pull/105
11 Signed-off-by: Alexys Jacob <ultrabug <AT> gentoo.org>
12
13 .github/workflows/build.yml | 2 ++
14 deploy.sh | 4 ++--
15 2 files changed, 4 insertions(+), 2 deletions(-)
16
17 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
18 index 4ce80e8..0f7349b 100644
19 --- a/.github/workflows/build.yml
20 +++ b/.github/workflows/build.yml
21 @@ -31,6 +31,8 @@ jobs:
22 - stage3-armv6j_hardfp
23 - stage3-armv7a_hardfp
24 - stage3-ppc64le
25 + - stage3-ppc64le-musl-hardened
26 + - stage3-ppc64le-systemd
27 - stage3-s390x
28 - stage3-x86
29 - stage3-x86-hardened
30
31 diff --git a/deploy.sh b/deploy.sh
32 index 8aa89a8..0a49525 100755
33 --- a/deploy.sh
34 +++ b/deploy.sh
35 @@ -22,10 +22,10 @@ declare -A MANIFEST_ARCHES=(
36 [stage3:latest]="amd64;arm64;armv5tel;armv6j_hardfp;armv7a_hardfp;ppc64le;s390x;x86"
37 [stage3:hardened]="amd64;x86"
38 [stage3:hardened-nomultilib]="amd64"
39 - [stage3:musl-hardened]="amd64"
40 + [stage3:musl-hardened]="amd64;ppc64le"
41 [stage3:musl-vanilla]="amd64;x86"
42 [stage3:nomultilib]="amd64"
43 - [stage3:systemd]="amd64;arm64;x86"
44 + [stage3:systemd]="amd64;arm64;x86;ppc64le"
45 [stage3:uclibc-hardened]="amd64;x86"
46 [stage3:uclibc-vanilla]="amd64;x86"
47 )