mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-03 21:14:26 +08:00
Fix: Remove linux/arm/v6 from build of postfix-exporter
This commit is contained in:
parent
12708dc8c7
commit
b359a946bf
1 changed files with 4 additions and 1 deletions
|
@ -68,7 +68,10 @@ runs:
|
|||
push: true
|
||||
tags: '${{ inputs.tags }}'
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
platforms: "linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/mips64le,linux/ppc64le,linux/s390x"
|
||||
# linux/arm/v5 and linux/arm/v6 are not supported anymore by upstream Go docker images.
|
||||
# Technically, we could build them but we would need to bootstrap the whole Go compiler.
|
||||
# However, I'm not sure if it's worth it.
|
||||
platforms: "linux/amd64,linux/arm/v7,linux/arm64/v8,linux/mips64le,linux/ppc64le,linux/s390x"
|
||||
# linux/386,linux/arm/v6,linux/arm64,linux/riscv64"
|
||||
cache-from: type=local,src=/tmp/.buildx-cache/postfix-exporter,mode=max,compression=estargz
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache-new/postfix-exporter
|
||||
|
|
Loading…
Add table
Reference in a new issue