And ppc64le - It might work, it might not. Someone will tell us if it doesn't.

Signed-off-by: Adam Warner <me@adamwarner.co.uk>
This commit is contained in:
Adam Warner 2021-09-15 18:32:38 +01:00
parent bc545b6049
commit c371768800
No known key found for this signature in database
GPG Key ID: 872950F3ECF2B173
4 changed files with 5 additions and 3 deletions

View File

@ -51,7 +51,7 @@ jobs:
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
with: with:
context: . context: .
platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6 platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6, linux/ppc64le
build-args: | build-args: |
CORE_VERSION=development CORE_VERSION=development
WEB_VERSION=devel WEB_VERSION=devel

View File

@ -57,7 +57,7 @@ jobs:
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
with: with:
context: . context: .
platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6 platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6, linux/ppc64le
build-args: | build-args: |
PIHOLE_VERSION=${{ env.TAG }} PIHOLE_VERSION=${{ env.TAG }}
push: true push: true

View File

@ -62,7 +62,7 @@ jobs:
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
with: with:
context: . context: .
platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6 platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6, linux/ppc64le
build-args: | build-args: |
CORE_VERSION=${{ github.event.inputs.core }} CORE_VERSION=${{ github.event.inputs.core }}
WEB_VERSION=${{ github.event.inputs.web }} WEB_VERSION=${{ github.event.inputs.web }}

View File

@ -20,6 +20,8 @@ s6_download_url() {
S6_ARCH="aarch64";; S6_ARCH="aarch64";;
i386) i386)
S6_ARCH="x86";; S6_ARCH="x86";;
ppc64el)
S6_ARCH="ppc64le";;
esac esac
echo "https://github.com/just-containers/s6-overlay/releases/download/${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.gz" echo "https://github.com/just-containers/s6-overlay/releases/download/${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.gz"
} }