-
Notifications
You must be signed in to change notification settings - Fork 46
358 lines (335 loc) Β· 11.1 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
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
name: Wheels
on:
push:
pull_request:
release:
types:
- published
schedule:
# At 12:00 on every day-of-month
- cron: "0 12 */1 * *"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build sdist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz
choose_wheel_types:
name: Decide which wheel types to build
runs-on: ubuntu-latest
steps:
- id: manylinux_x86_64
run: echo "wheel_types=manylinux_x86_64" >> $GITHUB_OUTPUT
- id: musllinux_x86_64
run: echo "wheel_types=musllinux_x86_64" >> $GITHUB_OUTPUT
- id: manylinux_aarch64
if: github.event_name == 'release' && github.event.action == 'published'
run: echo "wheel_types=manylinux_aarch64" >> $GITHUB_OUTPUT
outputs:
wheel_types: ${{ toJSON(steps.*.outputs.wheel_types) }}
build_wheels:
needs: [build_sdist, choose_wheel_types]
name: ${{ matrix.wheel_type }} wheels
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
wheel_type: ${{ fromJSON(needs.choose_wheel_types.outputs.wheel_types) }}
steps:
- name: Disable ptrace security restrictions
run: |
echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
- uses: docker/setup-qemu-action@v3
if: runner.os == 'Linux'
name: Set up QEMU
- uses: actions/download-artifact@v4
with:
name: sdist
- name: Extract sdist
run: |
tar zxvf *.tar.gz --strip-components=1
- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
env:
CIBW_BUILD: "cp3{7..13}-${{ matrix.wheel_type }}"
CIBW_ARCHS_LINUX: auto aarch64
CIBW_PRERELEASE_PYTHONS: True
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.wheel_type }}-wheels
path: ./wheelhouse/*.whl
test_attaching_to_old_interpreters:
needs: [build_wheels]
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python_version: ["2.7", "3.6"]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: "manylinux_x86_64-wheels"
path: dist
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Set up dependencies
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install -qy \
gdb \
python2.7-dev python2.7-dbg \
python3.6-dev python3.6-dbg python3.6-distutils
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-test.txt
python3 -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
- name: Disable ptrace security restrictions
run: |
echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
- name: Run pytest
env:
PYTHON_TEST_VERSION: ${{ matrix.python_version }}
run: python3 -m pytest tests -n auto -vvv
test_wheels:
needs: [build_wheels]
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "${{matrix.python_version}}-dev"
- uses: actions/download-artifact@v4
with:
name: "manylinux_x86_64-wheels"
path: dist
- name: Set up dependencies
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install -qy \
gdb \
python${{matrix.python_version}}-dev \
python${{matrix.python_version}}-dbg
- name: Install Python dependencies
run: |
python${{matrix.python_version}} -m pip install --upgrade pip
python${{matrix.python_version}} -m pip install -r requirements-test.txt
python${{matrix.python_version}} -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
- name: Disable ptrace security restrictions
run: |
echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
- name: Run pytest
env:
PYTHON_TEST_VERSION: "auto"
run: python${{matrix.python_version}} -m pytest tests -k 'not 2.7' -n auto -vvv
test_free_threading:
needs: [build_wheels]
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python_version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "${{matrix.python_version}}-dev"
- uses: actions/download-artifact@v4
with:
name: "manylinux_x86_64-wheels"
path: dist
- name: Set up dependencies
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install -qy \
gdb \
python${{matrix.python_version}}-dev \
python${{matrix.python_version}}-nogil \
python${{matrix.python_version}}-venv
- name: Install Python dependencies
run: |
python${{matrix.python_version}} -m pip install --upgrade pip
python${{matrix.python_version}} -m pip install -r requirements-test.txt
python${{matrix.python_version}} -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
- name: Install setuptools for the free-threading version
run: |
python${{matrix.python_version}}t -m venv --system-site-packages /tmp/pip${{matrix.python_version}}
/tmp/pip${{matrix.python_version}}/bin/pip install --user setuptools
- name: Disable ptrace security restrictions
run: |
echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
- name: Run pytest
env:
PYTHON_TEST_VERSION: "${{matrix.python_version}}t"
run: python${{matrix.python_version}} -m pytest tests -k 'not 2.7' -n auto -vvv
test_in_alpine:
needs: [build_wheels]
runs-on: ubuntu-latest
strategy:
fail-fast: false
container:
image: alpine
options: --cap-add=SYS_PTRACE
steps:
- uses: actions/checkout@v4
- name: Set up dependencies
run: |
apk add --update alpine-sdk bash alpine-sdk python3 python3-dev gdb musl-dbg python3-dbg
- uses: actions/download-artifact@v4
with:
name: "musllinux_x86_64-wheels"
path: dist
- name: Install Python dependencies
run: |
python3 -m venv venv
venv/bin/python3 -m pip install --upgrade pip
venv/bin/python3 -m pip install -r requirements-test.txt
venv/bin/python3 -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
- name: Run pytest
env:
PYTHON_TEST_VERSION: "auto"
run: venv/bin/python3 -m pytest tests -k 'not 2.7' -n auto -vvv
test_wheels_in_fedora:
needs: [build_wheels]
runs-on: ubuntu-latest
strategy:
fail-fast: false
container:
image: fedora
options: --cap-add=SYS_PTRACE
steps:
- uses: actions/checkout@v4
- name: Set up dependencies
run: |
dnf install -y \
gdb \
g++ \
file \
python3 \
python3-devel
dnf debuginfo-install -y \
python3
- uses: actions/download-artifact@v4
with:
name: "manylinux_x86_64-wheels"
path: dist
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-test.txt
python3 -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
- name: Run pytest
env:
PYTHON_TEST_VERSION: "auto"
run: python3 -m pytest tests -k 'not 2.7' -n auto -vvv
test_wheels_in_arch:
needs: [build_wheels]
runs-on: ubuntu-latest
strategy:
fail-fast: false
container:
image: archlinux
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v4
- name: Set up dependencies
run: |
pacman -Syu --noconfirm \
gdb \
gcc \
file \
python \
python-pip \
python-setuptools \
python-wheel \
elfutils \
debuginfod
- uses: actions/download-artifact@v4
with:
name: "manylinux_x86_64-wheels"
path: dist
- name: Install Python dependencies
run: |
python -m venv venv
venv/bin/python -m pip install --upgrade pip
venv/bin/python -m pip install -r requirements-test.txt
venv/bin/python -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
- name: Run pytest
env:
PYTHON_TEST_VERSION: "auto"
DEBUGINFOD_URLS: "https://debuginfod.archlinux.org"
run: venv/bin/python -m pytest tests -k 'not 2.7' -n auto -vvv
test_wheels_in_debian:
needs: [build_wheels]
runs-on: ubuntu-latest
strategy:
fail-fast: false
container:
image: debian
options: --cap-add=SYS_PTRACE
steps:
- uses: actions/checkout@v4
- name: Set up dependencies
run: |
apt-get update
apt-get install -qy \
gdb \
file \
python3-dev \
python3-pip \
python3-venv \
python3-dbg \
python3-distutils
- uses: actions/download-artifact@v4
with:
name: "manylinux_x86_64-wheels"
path: dist
- name: Install Python dependencies
run: |
python3 -m venv venv
venv/bin/python3 -m pip install --upgrade pip
venv/bin/python3 -m pip install -r requirements-test.txt
venv/bin/python3 -m pip install --no-index --find-links=dist/ --only-binary=pystack pystack
- name: Run pytest
env:
PYTHON_TEST_VERSION: "auto"
run: venv/bin/python3 -m pytest tests -k 'not 2.7' -n auto -vvv
upload_pypi:
needs: [test_wheels]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v4
with:
# with no name set, it downloads all of the artifacts
path: dist
- run: |
mv dist/sdist/*.tar.gz dist/
mv dist/*-wheels/*.whl dist/
rmdir dist/{sdist,*-wheels}
ls -R dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
skip_existing: true
password: ${{ secrets.PYPI_PASSWORD }}