-
Notifications
You must be signed in to change notification settings - Fork 3
113 lines (92 loc) · 3.25 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
name: Build
on:
pull_request:
push:
branches: [main]
tags: ["*"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: [39, 310, 311, 312, 313]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python }}
- name: Test
run: uv run python -m unittest discover tests
- name: Test with oldest-supported-numpy
run: |
uv pip install oldest-supported-numpy
uv run python -m unittest discover tests
build_wheels:
name: Build wheel for ${{ matrix.os }}-${{ matrix.build }}${{ matrix.python }}-${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
# Ensure that a wheel builder finishes even if another fails
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python: [39, 310, 311, 312, 313]
arch: [auto64, auto32, universal2]
build: ["cp"]
exclude:
- os: ubuntu-latest
arch: universal2
- os: windows-latest
arch: universal2
- os: macos-latest
arch: auto32
steps:
- name: Checkout mt2
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- uses: pypa/cibuildwheel@v2.21.3
env:
CIBW_BUILD_FRONTEND: "build[uv]"
CIBW_BUILD: "${{ matrix.build }}${{ matrix.python }}*"
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_TEST_COMMAND: python -m unittest discover -t {project} -s {project}/tests
- uses: actions/upload-artifact@v4
with:
name: "artifact-${{ matrix.os }}-${{ matrix.build }}-${{ matrix.python }}-${{ matrix.arch }}"
path: ./wheelhouse/*.whl
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Build sdist
run: uv build --sdist
- uses: actions/upload-artifact@v4
with:
name: artifact-source
path: dist/*.tar.gz
pass:
needs: [test, build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- run: echo "All jobs passed"
upload_pypi:
needs: [pass]
runs-on: ubuntu-latest
# upload to PyPI on every tag starting with 'v'
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Publish
run: uv publish