-
Notifications
You must be signed in to change notification settings - Fork 2
292 lines (249 loc) · 7.85 KB
/
ci.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
name: CI
on:
push:
branches:
- main
pull_request:
schedule:
# run this every Wednesday at 3 am UTC
- cron: 0 3 * * 3
workflow_dispatch:
concurrency:
# auto-cancel any in-progress job *on the same branch*
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- name: Check build
run: |
uvx check-manifest
uv build
unit-tests:
name: ${{matrix.os}} x py${{matrix.python-version}} ${{matrix.marker}}
strategy:
matrix:
os:
- ubuntu-latest
python-version:
- '3.11'
- '3.12'
marker: [''] # needed to avoid collision with PY_LIB job
install-args: [--no-build]
include:
- os: macos-latest
python-version: '3.12'
install-args: --no-build
- os: windows-latest
python-version: '3.12'
install-args: --no-build
# test with minimal requirements
- marker: minimal
os: ubuntu-20.04
python-version: '3.11'
install-args: --no-build --resolution=lowest-direct
# test GPGI_PY_LIB
- marker: PY_LIB
os: ubuntu-latest
python-version: '3.12'
install-args: --no-build
# add coverage for Python dev
- os: ubuntu-latest
python-version: 3.13-dev
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- run: echo $(pwd) # TODO: clean up (maybe use it on other archs first)
if: matrix.os == 'ubuntu-latest'
- name: Test
env:
GPGI_PY_LIB: ${{ matrix.marker == 'PY_LIB' }}
shell: bash # for windows-compat (using `\` as a line continuation)
# pinning [email protected] inline so it's up to date
# even with UV_RESOLUTION=lowest-direct
run: |
uvx --with-requirements=requirements/tests.txt ${{ matrix.install-args }} \
[email protected] run --parallel-mode -m pytest --color=yes -ra
- name: Upload coverage data
# only using reports from ubuntu because
# combining reports from multiple platforms is tricky (or impossible ?)
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
with:
name: gpgi_coverage_data-${{matrix.os}}-${{matrix.python-version}}-${{matrix.marker}}
path: .coverage.*
if-no-files-found: ignore
include-hidden-files: true
image-tests:
name: Image tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- run: uv python install 3.12
- name: Run Image Tests
run: |
uvx --with-requirements=requirements/tests.txt --no-build \
pytest --color=yes --mpl -m mpl_image_compare \
--mpl-generate-summary=html \
--mpl-results-path=gpgi_pytest_mpl_results \
--mpl-baseline-path=tests/pytest_mpl_baseline
- name: Generate new image baseline
if: failure()
run: |
uvx --with-requirements=requirements/tests.txt --no-build \
pytest --color=yes --mpl -m mpl_image_compare \
--mpl-generate-path=gpgi_pytest_mpl_new_baseline \
--last-failed
# always attempt to upload artifacts, even
# (and especially) in case of failure.
- name: Upload pytest-mpl report
if: always()
uses: actions/upload-artifact@v4
with:
name: gpgi_pytest_mpl_results
path: gpgi_pytest_mpl_results/*
- name: Upload pytest-mpl baseline
if: always()
uses: actions/upload-artifact@v4
with:
name: gpgi_pytest_mpl_new_baseline
path: gpgi_pytest_mpl_new_baseline/*
if-no-files-found: ignore
concurrency-tests:
name: Thread concurrency tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- run: uv python install 3.12
- name: Run Concurrency Tests
run: |
uvx --with-requirements=requirements/tests.txt --no-build \
pytest --color=yes --count 500 tests/test_concurrent.py
coverage:
name: Combine & check coverage.
runs-on: ubuntu-latest
needs: unit-tests
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- run: uv python install 3.12
- uses: actions/download-artifact@v4
with:
pattern: gpgi_coverage_data-*
merge-multiple: true
- name: Check coverage
run: |
uv python install 3.12
uv tool install coverage
coverage combine
coverage html --skip-covered --skip-empty
coverage report --fail-under=100 # >> $GITHUB_STEP_SUMMARY
- name: Upload HTML report if check failed.
uses: actions/upload-artifact@v4
with:
name: gpgi_coverage_report
path: htmlcov
if: ${{ failure() }}
typecheck:
strategy:
matrix:
python-version:
- '3.11'
- '3.12'
runs-on: ubuntu-latest
name: type check
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
- run: uv python install ${{ matrix.python-version }}
- name: Typecheck
run: |
uvx --with-requirements=requirements/typecheck.txt \
mypy src/gpgi
future:
name: 'py${{ matrix.python-version }} (free-threading: ${{ matrix.free-threading }})'
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
python-version:
- 3.13-dev
free-threading:
- false
- true
steps:
- uses: actions/checkout@v4
- if: ${{ !matrix.free-threading }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- if: ${{ matrix.free-threading }}
uses: deadsnakes/[email protected]
with:
python-version: ${{ matrix.python-version }}
nogil: true
- name: Build
# not using uv here because it doesn't currently (0.2.33) detect python3.13t as
# the active interpreter, and may instead see 3.10, which is not supported in gpgi
run: |
python -m pip install -U pip
python -m pip install --pre setuptools wheel
python -m pip install --pre numpy Cython \
--only-binary ':all:' \
--extra-index-url \
https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
python -m pip install . --no-build-isolation --no-deps
- name: Install minimal test env
run: python -m pip install --pre pytest pytest-repeat
- run: python -m pip list
- name: Tests
run: |
pytest --color=yes
pytest --color=yes --count 500 tests/test_concurrent.py
create-issue:
if: ${{ failure() && github.event_name == 'schedule' }}
needs: [future]
permissions:
issues: write
runs-on: ubuntu-latest
name: Create issue on failure
steps:
- name: Create issue on failure
uses: imjohnbo/issue-bot@v3
with:
title: 'TST: Upcoming dependency test failures'
body: |
The weekly build with future Python, Cython and numpy
has failed. Check the logs for any updates that need to be
made in gpgi.
https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
pinned: false
close-previous: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}