-
Notifications
You must be signed in to change notification settings - Fork 5
217 lines (198 loc) · 5.87 KB
/
build_wheels.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
name: Build
on:
pull_request:
paths:
- ".clang-format"
- ".clang-tidy"
- ".github/workflows/build_wheels.yml"
- ".gitmodules"
- "clp_ffi_py/**"
- "MANIFEST.in"
- "pyproject.toml"
- "README.md"
- "requirements-dev.txt"
- "setup.py"
- "src/**"
- "tests/**"
push:
paths:
- ".clang-format"
- ".clang-tidy"
- ".github/workflows/build_wheels.yml"
- ".gitmodules"
- "clp_ffi_py/**"
- "MANIFEST.in"
- "pyproject.toml"
- "README.md"
- "requirements-dev.txt"
- "setup.py"
- "src/**"
- "tests/**"
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
# Cancel in-progress jobs for efficiency
cancel-in-progress: true
jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
- run: docformatter --check --diff clp_ffi_py tests
- run: black --diff --check clp_ffi_py tests
- run: ruff check --output-format=github clp_ffi_py tests
- run: mypy clp_ffi_py tests
- run: |
find src/clp_ffi_py/ -type f | xargs clang-format --dry-run --Werror
build_wheels:
needs: [linters]
name: Build ${{ matrix.build.name }}
runs-on: ${{ matrix.build.os }}
strategy:
matrix:
build:
# macOS builds
- name: cp37-macosx_x86_64
os: macos-12
- name: cp38-macosx_arm64
os: macos-12
- name: cp38-macosx_universal2
os: macos-12
- name: cp38-macosx_x86_64
os: macos-12
- name: cp39-macosx_arm64
os: macos-12
- name: cp39-macosx_universal2
os: macos-12
- name: cp39-macosx_x86_64
os: macos-12
- name: cp310-macosx_arm64
os: macos-12
- name: cp310-macosx_universal2
os: macos-12
- name: cp310-macosx_x86_64
os: macos-12
- name: cp311-macosx_arm64
os: macos-12
- name: cp311-macosx_universal2
os: macos-12
- name: cp311-macosx_x86_64
os: macos-12
- name: cp312-macosx_arm64
os: macos-12
- name: cp312-macosx_universal2
os: macos-12
- name: cp312-macosx_x86_64
os: macos-12
# Linux builds
- name: cp310-manylinux_aarch64
os: ubuntu-22.04
- name: cp310-manylinux_i686
os: ubuntu-22.04
- name: cp310-manylinux_x86_64
os: ubuntu-22.04
- name: cp310-musllinux_aarch64
os: ubuntu-22.04
- name: cp310-musllinux_i686
os: ubuntu-22.04
- name: cp310-musllinux_x86_64
os: ubuntu-22.04
- name: cp311-manylinux_aarch64
os: ubuntu-22.04
- name: cp311-manylinux_i686
os: ubuntu-22.04
- name: cp311-manylinux_x86_64
os: ubuntu-22.04
- name: cp311-musllinux_aarch64
os: ubuntu-22.04
- name: cp311-musllinux_i686
os: ubuntu-22.04
- name: cp311-musllinux_x86_64
os: ubuntu-22.04
- name: cp312-manylinux_aarch64
os: ubuntu-22.04
- name: cp312-manylinux_i686
os: ubuntu-22.04
- name: cp312-manylinux_x86_64
os: ubuntu-22.04
- name: cp312-musllinux_aarch64
os: ubuntu-22.04
- name: cp312-musllinux_i686
os: ubuntu-22.04
- name: cp312-musllinux_x86_64
os: ubuntu-22.04
- name: cp37-manylinux_aarch64
os: ubuntu-22.04
- name: cp37-manylinux_i686
os: ubuntu-22.04
- name: cp37-manylinux_x86_64
os: ubuntu-22.04
- name: cp37-musllinux_aarch64
os: ubuntu-22.04
- name: cp37-musllinux_i686
os: ubuntu-22.04
- name: cp37-musllinux_x86_64
os: ubuntu-22.04
- name: cp38-manylinux_aarch64
os: ubuntu-22.04
- name: cp38-manylinux_i686
os: ubuntu-22.04
- name: cp38-manylinux_x86_64
os: ubuntu-22.04
- name: cp38-musllinux_aarch64
os: ubuntu-22.04
- name: cp38-musllinux_i686
os: ubuntu-22.04
- name: cp38-musllinux_x86_64
os: ubuntu-22.04
- name: cp39-manylinux_aarch64
os: ubuntu-22.04
- name: cp39-manylinux_i686
os: ubuntu-22.04
- name: cp39-manylinux_x86_64
os: ubuntu-22.04
- name: cp39-musllinux_aarch64
os: ubuntu-22.04
- name: cp39-musllinux_i686
os: ubuntu-22.04
- name: cp39-musllinux_x86_64
os: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: ${{ matrix.build.name }}
- uses: actions/upload-artifact@v4
with:
name: wheel-${{ matrix.build.name }}
path: ./wheelhouse/*.whl
retention-days: 1
combine-wheels:
needs: [build_wheels]
name: Combine wheels
runs-on: ubuntu-latest
env:
WHEEL_DIR: /tmp/wheels
steps:
- uses: actions/download-artifact@v4
with:
path: ${{env.WHEEL_DIR}}
merge-multiple: true
- uses: actions/upload-artifact@v4
with:
name: all-wheels
path: ${{env.WHEEL_DIR}}