forked from kyamagu/skia-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cibuildwheel will default to manylinux_2_28 on 6th May 2025 - Let's d…
…o it earlier. See https://cibuildwheel.pypa.io/en/stable/options/#linux-image and pypa/cibuildwheel#1772 Fixes kyamagu#284 and kyamagu#175
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
uses: docker/setup-qemu-action@v3 | ||
- name: Build skia 3rd-Party | ||
# Taken from https://github.com/pypa/cibuildwheel/blob/v2.19.2/cibuildwheel/resources/pinned_docker_images.cfg | ||
uses: docker://quay.io/pypa/manylinux2014_aarch64:2024.07.02-0 | ||
uses: docker://quay.io/pypa/manylinux_2_28_aarch64:2024.07.02-0 | ||
if: ${{ steps.cache-skia.outputs.cache-hit != 'true' }} | ||
with: | ||
args: bash -c "git config --global --add safe.directory '*' && | ||
|
@@ -61,7 +61,7 @@ jobs: | |
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Build Skia Proper | ||
uses: docker://quay.io/pypa/manylinux2014_aarch64:2024.07.02-0 | ||
uses: docker://quay.io/pypa/manylinux_2_28_aarch64:2024.07.02-0 | ||
with: | ||
args: bash -c "git config --global --add safe.directory '*' && | ||
bash scripts/build_Linux.sh | ||
|
@@ -116,6 +116,8 @@ jobs: | |
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_MANYLINUX_X86_64_IMAG: manylinux_2_28 | ||
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28 | ||
CIBW_BUILD: "${{ matrix.cp }}-*" | ||
CIBW_SKIP: "*musllinux*" | ||
CIBW_ARCHS: ${{ matrix.arch }} | ||
|
@@ -179,6 +181,8 @@ jobs: | |
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_MANYLINUX_X86_64_IMAG: manylinux_2_28 | ||
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28 | ||
CIBW_BUILD: "${{ matrix.cp }}-*" | ||
CIBW_SKIP: "*musllinux*" | ||
CIBW_ARCHS: ${{ matrix.arch }} | ||
|