Skip to content

Commit

Permalink
Disable architectures not supported by Debian LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
bbx0 committed Oct 2, 2024
1 parent 0e4bae0 commit 556af46
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ jobs:
${{ env.IMAGE }}:${{ env.BORG_VERSION }}-amd64
${{ env.IMAGE }}:${{ env.BORG_VERSION }}-arm64
${{ env.IMAGE }}:${{ env.BORG_VERSION }}-armv7
${{ env.IMAGE }}:${{ env.BORG_VERSION }}-ppc64le
${{ env.IMAGE }}:${{ env.BORG_VERSION }}-s390x
# ${{ env.IMAGE }}:${{ env.BORG_VERSION }}-ppc64le
# ${{ env.IMAGE }}:${{ env.BORG_VERSION }}-s390x
DISTROLESS_IMAGES: >-
${{ env.IMAGE }}:${{ env.BORG_VERSION }}-amd64-distroless
${{ env.IMAGE }}:${{ env.BORG_VERSION }}-arm64-distroless
${{ env.IMAGE }}:${{ env.BORG_VERSION }}-armv7-distroless
${{ env.IMAGE }}:${{ env.BORG_VERSION }}-ppc64le-distroless
${{ env.IMAGE }}:${{ env.BORG_VERSION }}-s390x-distroless
# ${{ env.IMAGE }}:${{ env.BORG_VERSION }}-ppc64le-distroless
# ${{ env.IMAGE }}:${{ env.BORG_VERSION }}-s390x-distroless
strategy:
fail-fast: false
matrix:
Expand All @@ -93,10 +93,10 @@ jobs:
suffix: -arm64
- platform: linux/arm/v7
suffix: -armv7
- platform: linux/ppc64le
suffix: -ppc64le
- platform: linux/s390x
suffix: -s390x
# - platform: linux/ppc64le
# suffix: -ppc64le
# - platform: linux/s390x
# suffix: -s390x
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ SHELL := /bin/bash
REGISTRY ?= localhost:5000
IMAGE ?= borgbackup
NAME = $(REGISTRY)/$(IMAGE):$(VERSION)
PLATFORM ?= linux/amd64,linux/arm64/v8,linux/arm/v7,linux/ppc64le,linux/s390x
PLATFORM ?= linux/amd64,linux/arm64/v8,linux/arm/v7
PUSH := true
#: }}}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ These binaries are added to the distroless base image:

### Platforms

The container images are built multi-platform for: `linux/amd64`, `linux/arm64`, `linux/arm/v7`, `linux/ppc64le`, `linux/s390x`.
The container images are built multi-platform for: `linux/amd64`, `linux/arm64`, `linux/arm/v7`.

(There are no specific tests in place to confirm a produced image works well a target platform.)

Expand Down

0 comments on commit 556af46

Please sign in to comment.