forked from python-cffi/cffi
-
Notifications
You must be signed in to change notification settings - Fork 0
402 lines (328 loc) · 13 KB
/
ci.yaml
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
on:
push:
pull_request:
types: [ opened, synchronize, reopened ]
schedule:
- cron: '0 12 * * 1'
env:
is_release_job: false
skip_ci_redundant_jobs: ${{ github.event_name == 'pull_request' }}
skip_slow_jobs: ${{ github.event_name == 'pull_request' }}
skip_self_hosted_runner_jobs: ${{ github.repository_owner != 'rolpdog' }}
skip_artifact_upload: ${{ github.event_name == 'pull_request' }}
jobs:
sdist:
runs-on: ubuntu-20.04
steps:
- name: clone repo
uses: actions/checkout@v4
- name: build sdist
run: |
rm -rf dist/
python -m pip install build
python -m build --sdist
- name: upload sdist artifact
uses: actions/upload-artifact@v3
with:
path: dist
if-no-files-found: error
if: ${{ ! env.skip_artifact_upload }}
make_linux_matrix:
runs-on: ubuntu-20.04
outputs:
matrix_json: ${{ steps.make_matrix.outputs.matrix_json }}
steps:
- uses: actions/checkout@v4
- name: make a matrix
id: make_matrix
uses: ./.github/actions/dynamatrix
with:
matrix_yaml: |
include:
- spec: cp38-manylinux_x86_64
- spec: cp39-manylinux_x86_64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp310-manylinux_x86_64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp311-manylinux_x86_64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp312-manylinux_x86_64
- spec: cp38-manylinux_i686
- spec: cp39-manylinux_i686
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp310-manylinux_i686
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp311-manylinux_i686
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp312-manylinux_i686
- spec: cp39-musllinux_x86_64
- spec: cp310-musllinux_x86_64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp311-musllinux_x86_64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp312-musllinux_x86_64
- spec: cp39-musllinux_i686
- spec: cp310-musllinux_i686
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp311-musllinux_i686
omit: ${{ env.skip_ci_redundant_jobs }}
#- spec: cp312-musllinux_i686 # busted as of 9/22/23
# omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp38-manylinux_aarch64
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs }}
- spec: cp39-manylinux_aarch64
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs || env.skip_ci_redundant_jobs }}
- spec: cp310-manylinux_aarch64
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs || env.skip_ci_redundant_jobs }}
- spec: cp311-manylinux_aarch64
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs || env.skip_ci_redundant_jobs }}
- spec: cp312-manylinux_aarch64
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs }}
- spec: cp38-manylinux_ppc64le
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs }}
- spec: cp39-manylinux_ppc64le
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs || env.skip_ci_redundant_jobs }}
- spec: cp310-manylinux_ppc64le
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs || env.skip_ci_redundant_jobs }}
- spec: cp311-manylinux_ppc64le
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs || env.skip_ci_redundant_jobs }}
- spec: cp312-manylinux_ppc64le
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs }}
- spec: cp38-manylinux_s390x
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs }}
- spec: cp39-manylinux_s390x
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs || env.skip_ci_redundant_jobs }}
- spec: cp310-manylinux_s390x
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs || env.skip_ci_redundant_jobs }}
- spec: cp311-manylinux_s390x
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs || env.skip_ci_redundant_jobs }}
- spec: cp312-manylinux_s390x
foreign_arch: true
test_args: '{project}/src/c'
omit: ${{ env.skip_slow_jobs }}
linux:
needs: make_linux_matrix
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.make_linux_matrix.outputs.matrix_json) }}
steps:
- name: clone repo
uses: actions/checkout@v4
- name: configure docker foreign arch support
uses: docker/setup-qemu-action@v3
if: ${{ matrix.foreign_arch || false }}
- name: build/test wheels
env:
CFLAGS: -Dffi_call=cffistatic_ffi_call # override name for ffi_call to break hard if we linked against someone else's libffi
CIBW_ARCHS_LINUX: all
CIBW_BUILD: ${{ matrix.spec }}
CIBW_BEFORE_BUILD: |
set -eux && \
curl -L -O https://github.com/libffi/libffi/archive/v3.4.2.tar.gz && \
tar zxf v3.4.2.tar.gz && cd libffi-3.4.2 && \
./autogen.sh && \
./configure --without-gcc-arch --disable-docs --with-pic --enable-shared=no && \
make && \
make install && \
ldconfig || true
CIBW_ENVIRONMENT_PASS_LINUX: CFLAGS # ensure that the build container can see our overridden build config
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux_img || '' }}
CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.manylinux_img || '' }}
CIBW_PRERELEASE_PYTHONS: 'True'
CIBW_TEST_REQUIRES: pytest setuptools # 3.12+ no longer includes distutils, just always ensure setuptools is present
CIBW_TEST_COMMAND: PYTHONUNBUFFERED=1 python -m pytest ${{ matrix.test_args || '{project}' }} # default to test all
run: |
python -m pip install --upgrade "${{ matrix.cibw_version || 'cibuildwheel' }}"
# actually build libffi + wheel (using env tweaks above)
python -m cibuildwheel --output-dir dist .
- name: upload artifacts
uses: actions/upload-artifact@v3
with:
path: dist
if-no-files-found: error
if: ${{ ! env.skip_artifact_upload }}
make_macos_matrix:
runs-on: ubuntu-20.04
outputs:
matrix_json: ${{ steps.make_matrix.outputs.matrix_json }}
steps:
- uses: actions/checkout@v4
- name: make a matrix
id: make_matrix
uses: ./.github/actions/dynamatrix
with:
matrix_yaml: |
include:
# build for x86_64 under the default hosted macOS 10.x x86_64 runner
- spec: cp38-macosx_x86_64
- spec: cp39-macosx_x86_64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp310-macosx_x86_64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp311-macosx_x86_64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp312-macosx_x86_64
# build for arm64 under a hacked macOS 12 self-hosted x86_64-on-arm64 runner until arm64 is fully supported
# FIXME: ? cp38-macosx_arm64 requires special handling and fails some test_zdist tests under cibw 2.1.2, skip it (so Apple's XCode python3 won't have a wheel)
# - spec: cp39-macosx_arm64
# deployment_target: '11.0'
# runs_on: [self-hosted, macOS]
# run_wrapper: arch -arm64 bash --noprofile --norc -eo pipefail {0}
# sdkroot: macosx11.3
# omit: ${{ env.skip_self_hosted_runner_jobs || env.skip_ci_redundant_jobs }}
# - spec: cp310-macosx_arm64
# deployment_target: '11.0'
# runs_on: [self-hosted, macOS]
# run_wrapper: arch -arm64 bash --noprofile --norc -eo pipefail {0}
# sdkroot: macosx11.3
# omit: ${{ env.skip_self_hosted_runner_jobs || env.skip_ci_redundant_jobs}}
- spec: cp311-macosx_arm64
deployment_target: '11.0'
runs_on: macos-12-xl
run_wrapper: arch -arm64 bash --noprofile --norc -eo pipefail {0}
sdkroot: macosx11.3
omit: ${{ env.skip_self_hosted_runner_jobs || env.skip_ci_redundant_jobs }}
# - spec: cp312-macosx_arm64
# deployment_target: '11.0'
# runs_on: [self-hosted, macOS]
# run_wrapper: arch -arm64 bash --noprofile --norc -eo pipefail {0}
# sdkroot: macosx11.3
# omit: ${{ env.skip_self_hosted_runner_jobs }}
macos:
needs: make_macos_matrix
defaults:
run:
shell: ${{ matrix.run_wrapper || 'bash --noprofile --norc -eo pipefail {0}' }}
runs-on: ${{ matrix.runs_on || 'macos-11' }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.make_macos_matrix.outputs.matrix_json) }}
steps:
- name: clone repo
# need to use v2 until we can upgrade the runners on our private Apple Silicon build infra to one that supports node20
uses: actions/checkout@v2
- name: build wheel prereqs
run: |
/usr/bin/pip3 install --user --upgrade "${{ matrix.cibw_version || 'cibuildwheel' }}"
brew uninstall --ignore-dependencies libffi || true
- name: build/test wheels
env:
CIBW_BUILD: ${{ matrix.spec }}
CIBW_PRERELEASE_PYTHONS: 'True'
CIBW_TEST_REQUIRES: pytest setuptools
CIBW_TEST_COMMAND: pip install pip --upgrade; cd {project}; PYTHONUNBUFFERED=1 pytest
run: |
if [[ -n "${{ matrix.deployment_target || '' }}" ]]
then
export MACOSX_DEPLOYMENT_TARGET="${{ matrix.deployment_target || '' }}"
fi
if [[ -n "${{ matrix.sdkroot || '' }}" ]]
then
export SDKROOT="${{ matrix.sdkroot || '' }}"
fi
/usr/bin/python3 -m cibuildwheel --output-dir dist
- name: upload artifacts
# need to use v2 until we can upgrade the runners on our private Apple Silicon build infra to one that supports node20
uses: actions/upload-artifact@v2
with:
path: dist
if-no-files-found: error
if: ${{ ! env.skip_artifact_upload }}
make_windows_matrix:
runs-on: ubuntu-20.04
outputs:
matrix_json: ${{ steps.make_matrix.outputs.matrix_json }}
steps:
- uses: actions/checkout@v4
- name: make a matrix
id: make_matrix
uses: ./.github/actions/dynamatrix
with:
matrix_yaml: |
include:
- spec: cp38-win_amd64
- spec: cp39-win_amd64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp310-win_amd64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp311-win_amd64
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp312-win_amd64
- spec: cp38-win32
- spec: cp39-win32
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp310-win32
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp311-win32
omit: ${{ env.skip_ci_redundant_jobs }}
- spec: cp312-win32
windows:
needs: make_windows_matrix
runs-on: windows-2019
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.make_windows_matrix.outputs.matrix_json) }}
steps:
- name: clone repo
uses: actions/checkout@v4
- name: build/test wheels
env:
CIBW_BUILD: ${{ matrix.spec }}
CIBW_PRERELEASE_PYTHONS: 'True'
CIBW_TEST_REQUIRES: pytest setuptools
CIBW_TEST_COMMAND: 'python -m pytest {project}/src/c'
# FIXME: /testing takes ~45min on Windows and has some failures...
# CIBW_TEST_COMMAND='python -m pytest {project}/src/c {project}/testing'
run: |
python -m pip install --upgrade pip
pip install "${{ matrix.cibw_version || 'cibuildwheel'}}"
python -m cibuildwheel --output-dir dist .
shell: bash
- name: upload artifacts
uses: actions/upload-artifact@v3
with:
path: dist
if-no-files-found: error
if: ${{ ! env.skip_artifact_upload }}
check:
if: always()
needs:
- sdist
- linux
- macos
- windows
runs-on: ubuntu-latest
steps:
- name: Verify all previous jobs succeeded (provides a single check to sample for gating purposes)
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}