-
-
Notifications
You must be signed in to change notification settings - Fork 33
371 lines (335 loc) · 11.4 KB
/
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
name: Build
on:
push:
branches:
- "**"
- "!main"
workflow_call:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build_environment:
name: ${{ matrix.os }} build environment
runs-on: ${{ matrix.os }}
if: github.repository == 'darvid/python-hyperscan'
env:
PCRE_VERSION: "8.45"
strategy:
fail-fast: true
matrix:
include:
- os: ubuntu-22.04
platform_id: manylinux_x86_64
- os: ubuntu-22.04
platform_id: musllinux_x86_64
- os: ubicloud-standard-2-arm
platform_id: manylinux_aarch64
- os: macos-15-large
platform_id: macosx_x86_64
- os: macos-15
platform_id: macosx_arm64
steps:
- name: Checkout python-hyperscan
uses: actions/checkout@v4
- name: Setup macOS environment
if: contains(matrix.os, 'macos')
run: |
gid=$(id -g)
uid=$(id -u)
sudo mkdir -p /opt/vectorscan /opt/pcre
sudo chown -R $uid:$gid /opt/vectorscan /opt/pcre
- name: Restore build dependencies cache (macOS)
id: build-deps-macos
if: contains(matrix.os, 'macos')
uses: actions/cache/restore@v4
with:
key: build-deps-${{ matrix.os }}-${{ matrix.platform_id }}
path: |
/opt/vectorscan
/opt/pcre
- name: Build Hyperscan (macOS)
if: contains(matrix.os, 'macos') && steps.build-deps-macos.outputs.cache-hit != 'true'
run: |
./build_tools/macos/build_hyperscan.sh
- name: Upload build dependencies (macOS)
if: contains(matrix.os, 'macos') && steps.build-deps-macos.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
key: ${{ steps.build-deps-macos.outputs.cache-primary-key }}
path: |
/opt/vectorscan
/opt/pcre
build_wheels:
name: ${{ matrix.python_id }}-${{ matrix.platform_id }} wheel
runs-on: ${{ matrix.os }}
if: github.repository == 'darvid/python-hyperscan'
env:
PCRE_VERSION: "8.45"
needs: [build_environment]
strategy:
fail-fast: false
matrix:
include:
# TODO: Windows support
# 🐧 manylinux x86_64
- os: ubuntu-22.04
python: "3.9"
python_id: cp39
platform_id: manylinux_x86_64
- os: ubuntu-22.04
python: "3.10"
python_id: cp310
platform_id: manylinux_x86_64
- os: ubuntu-22.04
python: "3.11"
python_id: cp311
platform_id: manylinux_x86_64
- os: ubuntu-22.04
python: "3.12"
python_id: cp312
platform_id: manylinux_x86_64
- os: ubuntu-22.04
python: "3.13"
python_id: cp313
platform_id: manylinux_x86_64
# 🐧 manylinux aarch64
- os: ubicloud-standard-2-arm
python: "3.9"
python_id: cp39
platform_id: manylinux_aarch64
- os: ubicloud-standard-2-arm
python: "3.10"
python_id: cp310
platform_id: manylinux_aarch64
- os: ubicloud-standard-2-arm
python: "3.11"
python_id: cp311
platform_id: manylinux_aarch64
- os: ubicloud-standard-2-arm
python: "3.12"
python_id: cp312
platform_id: manylinux_aarch64
- os: ubicloud-standard-2-arm
python: "3.13"
python_id: cp313
platform_id: manylinux_aarch64
# 🐧 manylinux2014 PyPy x86_64
- os: ubuntu-22.04
python: "3.9"
python_id: pp39
platform_id: manylinux_x86_64
- os: ubuntu-22.04
python: "3.10"
python_id: pp310
platform_id: manylinux_x86_64
# 🐧 manylinux2014 PyPy ARM
- os: ubicloud-standard-2-arm
python: "3.9"
python_id: pp39
platform_id: manylinux_aarch64
- os: ubicloud-standard-2-arm
python: "3.10"
python_id: pp310
platform_id: manylinux_aarch64
# 🦀 musllinux x86_64
- os: ubuntu-22.04
python: "3.9"
python_id: cp39
platform_id: musllinux_x86_64
- os: ubuntu-22.04
python: "3.10"
python_id: cp310
platform_id: musllinux_x86_64
- os: ubuntu-22.04
python: "3.11"
python_id: cp311
platform_id: musllinux_x86_64
- os: ubuntu-22.04
python: "3.12"
python_id: cp312
platform_id: musllinux_x86_64
- os: ubuntu-22.04
python: "3.13"
python_id: cp313
platform_id: musllinux_x86_64
# 🦀 musllinux ARM
- os: ubicloud-standard-2-arm
python: "3.9"
python_id: cp39
platform_id: musllinux_aarch64
- os: ubicloud-standard-2-arm
python: "3.10"
python_id: cp310
platform_id: musllinux_aarch64
- os: ubicloud-standard-2-arm
python: "3.11"
python_id: cp311
platform_id: musllinux_aarch64
- os: ubicloud-standard-2-arm
python: "3.12"
python_id: cp312
platform_id: musllinux_aarch64
- os: ubicloud-standard-2-arm
python: "3.13"
python_id: cp313
platform_id: musllinux_aarch64
# 🍎 macOS x86_64
- os: macos-15-large
python: "3.9"
python_id: cp39
platform_id: macosx_x86_64
- os: macos-15-large
python: "3.10"
python_id: cp310
platform_id: macosx_x86_64
- os: macos-15-large
python: "3.11"
python_id: cp311
platform_id: macosx_x86_64
- os: macos-15-large
python: "3.12"
python_id: cp312
platform_id: macosx_x86_64
- os: macos-15-large
python: "3.13"
python_id: cp313
platform_id: macosx_x86_64
# 🍎 macOS arm64 (Apple silicon)
- os: macos-15
python: "3.9"
python_id: cp39
platform_id: macosx_arm64
- os: macos-15
python: "3.10"
python_id: cp310
platform_id: macosx_arm64
- os: macos-15
python: "3.11"
python_id: cp311
platform_id: macosx_arm64
- os: macos-15
python: "3.12"
python_id: cp312
platform_id: macosx_arm64
- os: macos-15
python: "3.13"
python_id: cp313
platform_id: macosx_arm64
steps:
- name: Checkout python-hyperscan
uses: actions/checkout@v4
with:
fetch-depth: 0
# XXX: ☠️ https://github.com/actions/setup-python/issues/108
- if: ${{ !endsWith(matrix.os, '-arm') }}
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python }}
cache: true
# XXX: deadsnakes does not provide Python 3.10 for ubuntu 20.04 (jammy)
# as it's already the default upstream version; so we only need to use
# it for other versions, and only on ARM.
- if: ${{ endsWith(matrix.os, '-arm') && !endsWith(matrix.python_id, '310') }}
uses: deadsnakes/[email protected]
with:
python-version: ${{ matrix.python }}
- if: ${{ endsWith(matrix.os, '-arm') }}
name: Install PDM
run: |
curl -sSL https://pdm-project.org/install-pdm.py | python3 -
- name: Install Python deps
run: |
pdm install -G build -G release --no-self --frozen-lockfile -v
- name: Setup macOS environment
if: contains(matrix.os, 'macos')
run: |
gid=$(id -g)
uid=$(id -u)
sudo mkdir -p /opt/vectorscan /opt/pcre
sudo chown -R $uid:$gid /opt/vectorscan /opt/pcre
- name: Restore build dependencies cache
if: contains(matrix.os, 'macos')
uses: actions/cache/restore@v4
with:
key: build-deps-${{ matrix.os }}-${{ matrix.platform_id }}
path: |
/opt/vectorscan
/opt/pcre
- name: Restore build artifacts cache
id: cache-wheels
uses: actions/cache/restore@v4
with:
key: ${{ runner.os }}-${{ matrix.python_id }}-${{ matrix.platform_id }}-${{ hashFiles('src/**', 'build_tools/**/build_*.sh') }}
path: |
wheelhouse/*.whl
- name: Build and test wheels
if: steps.cache-wheels.outputs.cache-hit != 'true'
env:
PCRE_VERSION: ${{env.PCRE_VERSION}}
CIBW_ARCHS_MACOS: ${{ matrix.platform_id == 'macosx_arm64' && 'arm64' || 'x86_64' }}
CIBW_ARCHS_LINUX: auto aarch64
CIBW_BUILD: ${{ matrix.python_id }}-${{ matrix.platform_id }}
CIBW_BUILD_VERBOSITY: 1
run: bash ./build_tools/wheels/build_wheels.sh
- name: Save build artifacts
uses: actions/cache/save@v4
if: steps.cache-wheels.outputs.cache-hit != 'true'
with:
key: ${{ steps.cache-wheels.outputs.cache-primary-key }}
path: |
wheelhouse/*.whl
- name: Upload wheels to artifacts
uses: actions/upload-artifact@v4
# if: github.event_name == 'workflow_dispatch' || steps.cache-wheels.outputs.cache-hit != 'true'
with:
name: wheel-${{ matrix.python_id }}-${{ matrix.platform_id }}
path: |
wheelhouse/*.whl
build_sdist:
name: Source distribution
runs-on: ubuntu-22.04
steps:
- name: Restore source distribution cache
id: cache-sdist
uses: actions/cache/restore@v4
with:
key: sdist-${{ hashFiles('src/**', 'README.md', 'LICENSE', '*.py') }}
path: |
dist/*.tar.gz
- name: Checkout python-hyperscan
uses: actions/checkout@v4
with:
fetch-depth: 0
if: steps.cache-sdist.outputs.cache-hit != 'true'
- uses: pdm-project/setup-pdm@v4
with:
python-version: "3.11"
cache: true
if: steps.cache-sdist.outputs.cache-hit != 'true'
- name: Install Python deps
run: |
pdm install -G build -G release --no-self --no-lock -v
if: steps.cache-sdist.outputs.cache-hit != 'true'
- name: Increment version
run: pdm run semantic-release version --no-commit
if: steps.cache-sdist.outputs.cache-hit != 'true'
- name: Build source distribution
run: |
python setup.py sdist
if: steps.cache-sdist.outputs.cache-hit != 'true'
- name: Save source distribution cache
uses: actions/cache/save@v4
with:
key: ${{ steps.cache-sdist.outputs.cache-primary-key }}
path: |
dist/*.tar.gz
if: steps.cache-sdist.outputs.cache-hit != 'true'
- name: Upload source distribution to artifacts
uses: actions/upload-artifact@v4
# if: github.event_name == 'workflow_dispatch' || steps.cache-sdist.outputs.cache-hit != 'true'
with:
name: sdist
path: |
dist/*.tar.gz