Skip to content

Commit ceeda52

Browse files
committed
ignore arm/v7 (32bit) because unsupported by "cryptography" dep of Ansible and demand seems unlikely
1 parent 0c496b3 commit ceeda52

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ jobs:
8383
- name: Set up QEMU
8484
uses: docker/setup-qemu-action@master
8585
with:
86-
platforms: amd64,arm,arm64
86+
platforms: amd64,arm64
87+
# ignore arm/v7 (32bit) because unsupported by "cryptography" dep of
88+
# Ansible and demand seems unlikely
8789

8890
- name: Set up Docker BuildKit
8991
id: buildx
@@ -100,6 +102,6 @@ jobs:
100102
with:
101103
context: . # build context is workspace so we can copy artifacts from ./dist/
102104
builder: ${{ steps.buildx.outputs.name }}
103-
platforms: linux/amd64,linux/arm/v7,linux/arm64
105+
platforms: linux/amd64,linux/arm64
104106
push: true
105107
tags: ${{ steps.compose_tags.outputs.container_tags }}

0 commit comments

Comments
 (0)