@@ -6,37 +6,56 @@ permissions:
6
6
contents : read
7
7
8
8
env :
9
- CIBW_BEFORE_BUILD : pip install setuptools oldest-supported-numpy
9
+ CIBW_BEFORE_BUILD : pip install setuptools oldest-supported-numpy pytest
10
+ CIBW_BEFORE_TEST : pip install pytest
10
11
CIBW_BUILD_VERBOSITY : 1
11
- CIBW_TEST_COMMAND : python -c "import sys, numexpr; sys.exit(0 if numexpr.test().wasSuccessful() else 1)"
12
- CIBW_TEST_SKIP : " *macosx*arm64*"
12
+ CIBW_TEST_COMMAND : pytest --pyargs numexpr
13
+ # Testing on aarch64 takes too long, as it is currently emulated on GitHub Actions
14
+ CIBW_TEST_SKIP : " *linux*aarch64*"
13
15
# Building for musllinux and aarch64 takes way too much time.
14
16
# Moreover, NumPy is not providing musllinux for x86_64 either, so it's not worth it.
15
17
CIBW_SKIP : " *musllinux*aarch64* *musllinux*x86_64*"
16
18
17
19
jobs :
18
20
build_wheels :
19
- name : Build wheels on ${{ matrix.os }} for ${{ matrix.arch }} - ${{ matrix.p_ver }}
20
- runs-on : ${{ matrix.os }}
21
+ name : Build wheels on ${{ matrix.os }} for ${{ matrix.arch }}
22
+ runs-on : ${{ matrix.runs-on || matrix. os }}
21
23
permissions :
22
24
contents : write
23
25
env :
24
- CIBW_BUILD : ${{ matrix.cibw_build }}
26
+ CIBW_BUILD : ${{ matrix.cibw_pattern }}
25
27
CIBW_ARCHS_LINUX : ${{ matrix.arch }}
26
28
CIBW_ARCHS_MACOS : " x86_64 arm64"
29
+ CIBW_ENABLE : cpython-freethreading
27
30
strategy :
31
+ fail-fast : false
28
32
matrix :
29
- os : [ubuntu-latest, windows-latest, macos-latest]
30
- arch : [ x86_64, aarch64]
31
- cibw_build : ["cp3{10,11,12,13}-*"]
32
- p_ver : ["3.10-3.13"]
33
- exclude :
34
- - os : windows-latest
35
- arch : aarch64
36
- # cibuild is already in charge to build aarch64 (see CIBW_ARCHS_MACOS )
37
- - os : macos -latest
33
+ include :
34
+ # Linux x86_64 builds
35
+ - os : ubuntu-latest
36
+ arch : x86_64
37
+ cibw_pattern : " cp3{10,11,12,13,13t}-manylinux* "
38
+ artifact_name : " linux-x86_64 "
39
+
40
+ # Linux ARM64 builds (native runners )
41
+ - os : ubuntu -latest
38
42
arch : aarch64
43
+ cibw_pattern : " cp3{10,11,12,13,13t}-manylinux*"
44
+ artifact_name : " linux-aarch64"
45
+ # Don't use native runners for now (looks like wait times are too long)
46
+ # runs-on: ["ubuntu-latest", "arm64"]
39
47
48
+ # Windows builds
49
+ - os : windows-latest
50
+ arch : x86_64
51
+ cibw_pattern : " cp3{10,11,12,13,13t}-win*"
52
+ artifact_name : " windows-x86_64"
53
+
54
+ # macOS builds (universal2)
55
+ - os : macos-latest
56
+ arch : x86_64
57
+ cibw_pattern : " cp3{10,11,12,13,13t}-macosx*"
58
+ artifact_name : " macos-universal2"
40
59
steps :
41
60
- uses : actions/checkout@v3
42
61
@@ -45,17 +64,22 @@ jobs:
45
64
with :
46
65
python-version : ' 3.x'
47
66
48
- - name : Install cibuildwheel
67
+ - name : Setup free-threading variables
68
+ if : ${{ endsWith(matrix.cibw_build, 't-*') }}
69
+ shell : bash -l {0}
49
70
run : |
50
- python -m pip install cibuildwheel
71
+ echo "CIBW_BEFORE_BUILD=pip install setuptools numpy" >> "$GITHUB_ENV"
72
+ echo "CIBW_BEFORE_TEST=pip install pytest pytest-run-parallel" >> "$GITHUB_ENV"
73
+ echo "CIBW_TEST_COMMAND=pytest --parallel-threads=4 --pyargs numexpr" >> "$GITHUB_ENV"
51
74
52
- - uses : docker/setup-qemu-action@v2
53
- if : ${{ matrix.arch == 'aarch64' }}
54
- name : Set up QEMU
75
+ - name : Set up QEMU
76
+ if : matrix.arch == 'aarch64'
77
+ uses : docker/setup-qemu-action@v3
78
+ with :
79
+ platforms : arm64
55
80
56
81
- name : Build wheels
57
- run : |
58
- python -m cibuildwheel --output-dir wheelhouse
82
+ uses : pypa/cibuildwheel@v2.23
59
83
60
84
- name : Make sdist
61
85
if : ${{ matrix.os == 'windows-latest' }}
65
89
66
90
- uses : actions/upload-artifact@v4
67
91
with :
92
+ name : ${{ matrix.artifact_name }}
68
93
path : ./wheelhouse/*
69
94
70
95
- name : Upload to GitHub Release
0 commit comments