Skip to content

Commit 6188d9f

Browse files
committed
Merge branch 'maintenance/armv7l-arch-meta-fix' into devel
PR #810.
2 parents 7ee19d6 + 7cb839b commit 6188d9f

3 files changed

Lines changed: 17 additions & 5 deletions

File tree

.github/workflows/build-manylinux-container-images.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,26 @@ jobs:
4444
- _2_34
4545
include:
4646
- IMAGE:
47-
ARCH: armv7l
47+
ARCH_SUFFIX: armv7l
48+
ARCH: arm
4849
HOST_OS: ubuntu-24.04-arm
4950
YEAR: _2_31 # There are no base images prior to 2.31 for this arch
5051

5152
env:
5253
LIBSSH_VERSION: 0.12.0
5354
PYPA_MANYLINUX_TAG: >-
54-
manylinux${{ matrix.YEAR }}_${{ matrix.IMAGE.ARCH }}
55+
manylinux${{ matrix.YEAR }}_${{
56+
matrix.IMAGE.ARCH_SUFFIX
57+
|| matrix.IMAGE.ARCH
58+
}}
5559
FULL_IMAGE_NAME: >-
5660
${{
5761
github.repository
5862
}}-manylinux${{
5963
matrix.YEAR
6064
}}_${{
61-
matrix.IMAGE.ARCH
65+
matrix.IMAGE.ARCH_SUFFIX
66+
|| matrix.IMAGE.ARCH
6267
}}
6368
QEMU_ARCH: ${{ matrix.IMAGE.QEMU_ARCH || matrix.IMAGE.ARCH }}
6469

@@ -68,15 +73,18 @@ jobs:
6873

6974
name: >- # can't use `env` in this context:
7075
🐳
71-
manylinux${{ matrix.YEAR }}_${{ matrix.IMAGE.ARCH }}
76+
manylinux${{ matrix.YEAR }}_${{
77+
matrix.IMAGE.ARCH_SUFFIX
78+
|| matrix.IMAGE.ARCH
79+
}}
7280
steps:
7381
- name: Fetch the repo src
7482
uses: actions/checkout@v4.1.6
7583
- name: >-
7684
Set up QEMU ${{ env.QEMU_ARCH }} arch emulation
7785
with Podman
7886
if: >-
79-
!contains(fromJSON('["aarch64", "amd64", "armv7l"]'), env.QEMU_ARCH)
87+
!contains(fromJSON('["aarch64", "amd64", "arm"]'), env.QEMU_ARCH)
8088
run: >
8189
sudo podman run
8290
--rm --privileged
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
The pre-cached ``armv7l`` images we build for the packaging
2+
infrastructure are now correctly tagged with the ``linux/arm/v7``
3+
OCI platform tag -- by :user:`webknjaz`.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
810.contrib.rst

0 commit comments

Comments
 (0)