Commit aff7bd3 1 parent 460f914 commit aff7bd3 Copy full SHA for aff7bd3
File tree 1 file changed +3
-7
lines changed
1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -45,19 +45,19 @@ jobs:
45
45
- id : manylinux_i686
46
46
run : echo "wheel_types=manylinux_i686" >> $GITHUB_OUTPUT
47
47
- id : manylinux_aarch64
48
- if : github.event_name == 'release' && github.event.action == 'published'
49
48
run : echo "wheel_types=manylinux_aarch64" >> $GITHUB_OUTPUT
50
49
outputs :
51
50
wheel_types : ${{ toJSON(steps.*.outputs.wheel_types) }}
52
51
53
52
build_linux_wheels :
54
53
needs : [build_sdist, choose_linux_wheel_types]
55
54
name : ${{ matrix.wheel_type }}${{ matrix.manylinux2010_hack }} wheels
56
- runs-on : ubuntu-latest
55
+ runs-on : ${{ matrix.runner }}
57
56
strategy :
58
57
fail-fast : false
59
58
matrix :
60
59
wheel_type : ${{ fromJSON(needs.choose_linux_wheel_types.outputs.wheel_types) }}
60
+ runner : ["ubuntu-latest"]
61
61
manylinux2010_hack : [""]
62
62
include :
63
63
- wheel_type : manylinux_x86_64
95
95
with :
96
96
name : tests
97
97
path : tests
98
- - uses : docker/setup-qemu-action@v3
99
- if : runner.os == 'Linux'
100
- name : Set up QEMU
101
98
- name : Extract sdist
102
99
run : |
103
100
tar zxvf dist/*.tar.gz --strip-components=1
@@ -108,11 +105,10 @@ jobs:
108
105
uses : pypa/cibuildwheel@v2.22.0
109
106
env :
110
107
CIBW_BUILD : " cp3{7..13}-${{ matrix.wheel_type }}"
111
- CIBW_ARCHS_LINUX : auto aarch64
108
+ CIBW_ARCHS_LINUX : auto
112
109
CIBW_PRERELEASE_PYTHONS : True
113
110
CIBW_TEST_EXTRAS : test
114
111
CIBW_TEST_COMMAND : python -m pytest {package}/tests
115
- CIBW_TEST_SKIP : " *aarch64*"
116
112
- uses : actions/upload-artifact@v4
117
113
with :
118
114
name : ${{ matrix.wheel_type }}${{ matrix.manylinux2010_hack }}-wheels
You can’t perform that action at this time.
0 commit comments