-
Notifications
You must be signed in to change notification settings - Fork 76
276 lines (257 loc) Β· 7.98 KB
/
ci.yml
File metadata and controls
276 lines (257 loc) Β· 7.98 KB
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
name: CI
on:
push:
branches:
- stable
- main
- 4.1-update
tags:
- v*
pull_request:
branches:
- '**'
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == 'refs/heads/main' && github.sha || '' }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
build:
name: Build ${{ matrix.os.name }} ${{ matrix.python.name }}
runs-on: ${{ matrix.os.runs-on }}
strategy:
fail-fast: false
matrix:
os:
- name: π§
runs-on: ubuntu-latest
python:
- name: CPython 3.10
major_dot_minor: '3.10'
action: '3.10'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
# with:
# This allows the matrix to specify just the major.minor version while still
# expanding it to get the latest patch version including alpha releases.
# This avoids the need to update for each new alpha, beta, release candidate,
# and then finally an actual release version. actions/setup-python doesn't
# support this for PyPy presently so we get no help there.
#
# CPython -> 3.9.0-alpha - 3.9.X
# PyPy -> pypy-3.7
# python-version: ${{ fromJSON(format('["{0}", "{1}"]', format('{0}.0-alpha - {0}.X', matrix.python.action), matrix.python.action))[startsWith(matrix.python.action, 'pypy')] }}
# architecture: x64
- name: Setup environment
run: |
python -m pip install build
- name: Build sdist and wheel
run: |
python -m build
- name: Publish package files
if: always()
uses: actions/upload-artifact@v4
with:
name: packages
path: dist/*
if-no-files-found: error
test-standard:
name: Test ${{ matrix.os.name }} ${{ matrix.python.name }}
needs:
- build
runs-on: ${{ matrix.os.runs-on }}
strategy:
fail-fast: false
matrix:
os:
- name: π§
runs-on: ubuntu-latest
- name: π
runs-on: macos-15
- name: πͺ
runs-on: windows-latest
python:
- name: CPython 3.8
major_dot_minor: '3.8'
action: '3.8'
- name: CPython 3.9
major_dot_minor: '3.9'
action: '3.9'
- name: CPython 3.10
major_dot_minor: '3.10'
action: '3.10'
- name: CPython 3.11
major_dot_minor: '3.11'
action: '3.11'
- name: CPython 3.12
major_dot_minor: '3.12'
action: '3.12'
- name: CPython 3.13
major_dot_minor: '3.13'
action: '3.13'
- name: CPython 3.14
major_dot_minor: '3.14'
action: '3.14'
exclude:
- os:
name: "π"
runs-on: macos-15
python:
name: "CPython 3.8"
major_dot_minor: '3.8'
action: '3.8'
- os:
name: "π"
runs-on: macos-15
python:
name: "CPython 3.9"
major_dot_minor: '3.9'
action: '3.9'
- os:
name: "π"
runs-on: macos-15
python:
name: "CPython 3.10"
major_dot_minor: '3.10'
action: '3.10'
steps:
- uses: actions/checkout@v4
with:
path: repo
- name: Download package files
uses: actions/download-artifact@v4
with:
name: packages
path: dist
- uses: actions/setup-python@v5
with:
# This allows the matrix to specify just the major.minor version while still
# expanding it to get the latest patch version including alpha releases.
# This avoids the need to update for each new alpha, beta, release candidate,
# and then finally an actual release version. actions/setup-python doesn't
# support this for PyPy presently so we get no help there.
#
# CPython -> 3.9.0-alpha - 3.9.X
# PyPy -> pypy-3.7
python-version: ${{ fromJSON(format('["{0}", "{1}"]', format('{0}.0-alpha - {0}.X', matrix.python.action), matrix.python.action))[startsWith(matrix.python.action, 'pypy')] }}
architecture: x64
- name: Setup environment
run: |
python --version --version
# make sure we test the installed code
cp -R repo/tests/ tests/
python -m pip install -r tests/requirements.txt
python -m pip install ./dist/*.whl
# show the directory contents for diagnostics
ls -la
- name: Run pytest
env:
BITSTRING_USE_RUST_CORE: ${{ matrix.rust.env_var }}
run: |
python -m pytest tests/ --benchmark-disable
test-rust:
name: Test ${{ matrix.os.name }} ${{ matrix.python.name }} (Rust core)
if: always()
needs:
- test-standard
runs-on: ${{ matrix.os.runs-on }}
strategy:
fail-fast: false
matrix:
os:
- name: π§
runs-on: ubuntu-latest
- name: π
runs-on: macos-15
- name: πͺ
runs-on: windows-latest
python:
- name: CPython 3.8
major_dot_minor: '3.8'
action: '3.8'
- name: CPython 3.9
major_dot_minor: '3.9'
action: '3.9'
- name: CPython 3.10
major_dot_minor: '3.10'
action: '3.10'
- name: CPython 3.11
major_dot_minor: '3.11'
action: '3.11'
- name: CPython 3.12
major_dot_minor: '3.12'
action: '3.12'
- name: CPython 3.13
major_dot_minor: '3.13'
action: '3.13'
- name: CPython 3.14
major_dot_minor: '3.14'
action: '3.14'
exclude:
- os:
name: "π"
runs-on: macos-15
python:
name: "CPython 3.8"
major_dot_minor: '3.8'
action: '3.8'
- os:
name: "π"
runs-on: macos-15
python:
name: "CPython 3.9"
major_dot_minor: '3.9'
action: '3.9'
- os:
name: "π"
runs-on: macos-15
python:
name: "CPython 3.10"
major_dot_minor: '3.10'
action: '3.10'
steps:
- uses: actions/checkout@v4
with:
path: repo
- name: Download package files
uses: actions/download-artifact@v4
with:
name: packages
path: dist
- uses: actions/setup-python@v5
with:
python-version: ${{ fromJSON(format('["{0}", "{1}"]', format('{0}.0-alpha - {0}.X', matrix.python.action), matrix.python.action))[startsWith(matrix.python.action, 'pypy')] }}
architecture: x64
- name: Setup environment
run: |
python --version --version
# make sure we test the installed code
cp -R repo/tests/ tests/
python -m pip install -r tests/requirements.txt
python -m pip install ./dist/*.whl
# show the directory contents for diagnostics
ls -la
- name: Run pytest
env:
BITSTRING_USE_RUST_CORE: '1'
run: |
python -m pytest tests/ --benchmark-disable
all:
name: All successful
runs-on: ubuntu-latest
# The always() part is very important.
# If not set, the job will be skipped on failing dependencies.
if: always()
needs:
# This is the list of CI job that we are interested to be green before
# a merge.
- build
- test-standard
- test-rust
steps:
- name: Require all successes
uses: re-actors/alls-green@v1.2.2
with:
jobs: ${{ toJSON(needs) }}