From fb19630c2ab94ecff5e614f3648b3e6bbdd17aad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bojan=20=C4=8Cekrli=C4=87?= Date: Wed, 13 Apr 2022 11:09:05 +0200 Subject: [PATCH] Upd: (Temporarily?) remove linux/386 build Seems that there's an issue with Alpine `linux/386` repo which produces an error `UNTRUSTED signature` while trying to install packages. Temporarily removing this platform make the build pass. --- .github/workflows/master.yml | 4 +++- .github/workflows/pull_request.yml | 2 +- .github/workflows/tags.yml | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 82a7f31..839c724 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -95,7 +95,9 @@ jobs: tags: | boky/postfix:latest boky/postfix:latest-alpine - platforms: "linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le" # linux/s390x: "rsyslog (no such package)" + # linux/386: WARNING: Ignoring https://dl-cdn.alpinelinux.org/alpine/v3.15/main: UNTRUSTED signature + # linux/s390x: "rsyslog (no such package)" + platforms: "linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le" cache-from: type=local,src=/tmp/.buildx-cache/alpine cache-to: type=local,dest=/tmp/.buildx-cache-new/alpine build-args: | diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e68dfc6..ce3e9c1 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -92,7 +92,7 @@ jobs: tags: | boky/postfix:latest boky/postfix:latest-alpine - platforms: "linux/amd64" # linux/s390x: "rsyslog (no such package)" + platforms: "linux/amd64" cache-from: type=local,src=/tmp/.buildx-cache/alpine build-args: | diff --git a/.github/workflows/tags.yml b/.github/workflows/tags.yml index 8c9339b..da1875e 100644 --- a/.github/workflows/tags.yml +++ b/.github/workflows/tags.yml @@ -95,7 +95,9 @@ jobs: tags: | boky/postfix:${{ env.RELEASE_VERSION }} boky/postfix:${{ env.RELEASE_VERSION }}-alpine - platforms: "linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le" # linux/s390x: "rsyslog (no such package)" + # linux/386: WARNING: Ignoring https://dl-cdn.alpinelinux.org/alpine/v3.15/main: UNTRUSTED signature + # linux/s390x: "rsyslog (no such package)" + platforms: "linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le" cache-from: type=local,src=/tmp/.buildx-cache/alpine cache-to: type=local,dest=/tmp/.buildx-cache-new/alpine build-args: |