File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 28
28
- name : Set up QEMU
29
29
uses : docker/setup-qemu-action@v3
30
30
- name : Build skia
31
- # Taken from https://github.com/pypa/cibuildwheel/blob/v2.16 .2/cibuildwheel/resources/pinned_docker_images.cfg
32
- uses : docker://quay.io/pypa/manylinux2014_aarch64 :2024.07.02-0
31
+ # Taken from https://github.com/pypa/cibuildwheel/blob/v2.19 .2/cibuildwheel/resources/pinned_docker_images.cfg
32
+ uses : docker://quay.io/pypa/manylinux_2_28_aarch64 :2024.07.02-0
33
33
if : ${{ steps.cache-skia.outputs.cache-hit != 'true' }}
34
34
with :
35
35
args : bash -c "git config --global --add safe.directory '*' &&
86
86
- name : Build wheels
87
87
88
88
env :
89
+ CIBW_MANYLINUX_X86_64_IMAGE : manylinux_2_28
90
+ CIBW_MANYLINUX_AARCH64_IMAGE : manylinux_2_28
89
91
CIBW_BUILD : " ${{ matrix.cp }}-*"
90
92
CIBW_SKIP : " *musllinux*"
91
93
CIBW_ARCHS : ${{ matrix.arch }}
@@ -150,6 +152,8 @@ jobs:
150
152
- name : Build wheels
151
153
152
154
env :
155
+ CIBW_MANYLINUX_X86_64_IMAGE : manylinux_2_28
156
+ CIBW_MANYLINUX_AARCH64_IMAGE : manylinux_2_28
153
157
CIBW_BUILD : " ${{ matrix.cp }}-*"
154
158
CIBW_SKIP : " *musllinux*"
155
159
CIBW_ARCHS : ${{ matrix.arch }}
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ if [[ $(uname -m) == "aarch64" ]]; then
9
9
yum -y install epel-release && \
10
10
yum repolist && \
11
11
yum install -y ninja-build && \
12
- ln -s ninja-build /usr/bin/ninja &&
13
12
mv depot_tools/ninja depot_tools/ninja.bak
14
13
fi
15
14
@@ -36,7 +35,7 @@ export LDFLAGS="-lrt"
36
35
git clone https://gn.googlesource.com/gn && \
37
36
cd gn && \
38
37
git checkout 981f46c64d1456d2083b1a2fa1367e753e0cdc1b && \
39
- python build/gen.py && \
38
+ python3 build/gen.py && \
40
39
ninja -C out gn && \
41
40
cd ..
42
41
You can’t perform that action at this time.
0 commit comments