Skip to content

Commit

Permalink
Explicitly set the image for each architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
knro committed Jan 11, 2025
1 parent 951d6f1 commit 4e9614b
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ jobs:
matrix:
os: [ubuntu-latest]
arch: [x86_64, aarch64]
include:
- arch: x86_64
image: quay.io/pypa/manylinux2014_x86_64:latest
- arch: aarch64
image: quay.io/pypa/manylinux2014_aarch64:latest

steps:
- uses: actions/checkout@v3
Expand All @@ -46,8 +41,8 @@ jobs:
env:
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*"
CIBW_ARCHS_LINUX: "${{ matrix.arch }}"
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.image }}
CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.image }}
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2014_x86_64:latest
CIBW_MANYLINUX_AARCH64_IMAGE: quay.io/pypa/manylinux2014_aarch64:latest
CIBW_BEFORE_ALL_LINUX: |
set -e
yum install -y \
Expand Down

0 comments on commit 4e9614b

Please sign in to comment.