Skip to content

Commit 8e9d7fe

Browse files
committed
cibuildwheel musllinux: pin to older image pypa/manylinux#1795
1 parent 5aae4c5 commit 8e9d7fe

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ workflows:
9898
tags:
9999
only: /.*/
100100
build: "*musllinux*"
101-
image: quay.io/pypa/musllinux_1_2_aarch64
101+
image: quay.io/pypa/musllinux_1_2_aarch64:2025.02.02-1

.github/workflows/wheels.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
include:
2323
- image: manylinux_2_28_x86_64
2424
build: "*manylinux*"
25-
- image: musllinux_1_2_x86_64
25+
- image: musllinux_1_2_x86_64:2025.02.02-1
2626
build: "*musllinux*"
2727

2828
steps:
@@ -53,9 +53,13 @@ jobs:
5353
# Linux arm64 wheels are built on circleci
5454
CIBW_ARCHS_LINUX: auto64 # ppc64le s390x
5555

56+
57+
- id: image_name_fix
58+
run: |
59+
image=${{ matrix.image }}; echo "fixed_image_name=${image/:/_}" >>${GITHUB_OUTPUT}
5660
- uses: actions/upload-artifact@v4
5761
with:
58-
name: artifact-${{ matrix.image }}
62+
name: artifact-${{steps.image_name_fix.outputs.fixed_image_name}}
5963
path: ./wheelhouse/*.whl
6064

6165
build_sdist:

0 commit comments

Comments
 (0)