-
Notifications
You must be signed in to change notification settings - Fork 0
226 lines (199 loc) · 6.33 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
name: CI
on:
push:
branches:
- stable
- main
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
- name: 🍎
runs-on: macos-latest
- name: 🪟
runs-on: windows-latest
python:
- 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'
steps:
- uses: actions/checkout@v3
- 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.
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 --upgrade pip
python -m pip install build
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.5.1"
- name: Set up environment
run: |
uv venv
if [[ "$RUNNER_OS" == "Windows" ]]; then
source .venv\\Scripts\\activate
else
source .venv/bin/activate
fi
- name: Build sdist and wheel
run: |
# Only build sdist on one combination (ubuntu + py3.11)
if [[ "${{ matrix.os.runs-on }}" == "ubuntu-latest" && "${{ matrix.python.action }}" == "3.11" ]]; then
python -m build --sdist
fi
# Build Rust wheels explicitly
uv pip install -r pyproject.toml -r dev-requirements.txt
uvx maturin build --release
# Copy wheels to dist
mkdir -p dist
cp target/wheels/* dist/
- name: Publish package files
if: always()
uses: actions/upload-artifact@v4
with:
name: packages-${{ matrix.os.runs-on }}-${{ matrix.python.action }}
path: dist/*
if-no-files-found: error
test:
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-latest
- name: 🪟
runs-on: windows-latest
python:
- 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'
steps:
- uses: actions/checkout@v3
with:
path: repo
- name: Download package files
uses: actions/download-artifact@v4
with:
name: packages-${{ matrix.os.runs-on }}-${{ matrix.python.action }}
path: dist
- uses: actions/setup-python@v4
with:
architecture: x64
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.5.1"
- name: Set up environment
run: |
cd repo
uv venv
if [[ "$RUNNER_OS" == "Windows" ]]; then
source .venv\\Scripts\\activate
else
source .venv/bin/activate
fi
- name: Build and test
run: |
cd repo
./build.sh
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
steps:
- name: Require all successes
uses: re-actors/alls-green@v1.2.2
with:
jobs: ${{ toJSON(needs) }}
publish:
name: Publish to PyPI
needs: [ all ]
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- name: Create dist directory
run: mkdir -p dist
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts # Download to a temporary directory first
- name: Move distribution files to dist
run: |
mkdir -p dist
find artifacts -type f \( -name "*.whl" -o -name "*.tar.gz" \) -exec mv {} dist/ \;
ls -lR artifacts/ # Let's see what files are actually in the artifacts directories
echo "Contents of dist directory:"
ls -l dist/
# Optional: Test with TestPyPI first
- name: Publish to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
skip-existing: true
verbose: true
# Only publish to PyPI if it's not a prerelease version
- name: Check if prerelease
id: check_prerelease
run: |
if [[ ${{ github.ref }} =~ .*-alpha|beta|rc.* ]]; then
echo "is_prerelease=true" >> $GITHUB_OUTPUT
else
echo "is_prerelease=false" >> $GITHUB_OUTPUT
fi
# Publish to actual PyPI only for non-prerelease versions
- name: Publish to PyPI
if: steps.check_prerelease.outputs.is_prerelease == 'false'
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true