-
Notifications
You must be signed in to change notification settings - Fork 4
151 lines (131 loc) · 4.99 KB
/
ci.yml
File metadata and controls
151 lines (131 loc) · 4.99 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
name: CI
on:
push:
branches: [master]
tags: ["v*"]
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install linters
run: pip install ruff cython-lint
- name: Lint Python with ruff
run: ruff check . --ignore SIM103
- name: Lint advisories (non-blocking)
run: ruff check . --select SIM103 || true
- name: Lint Cython
run: >
cython-lint
wlsqm/fitter/defs.pyx wlsqm/fitter/defs.pxd
wlsqm/fitter/infra.pyx wlsqm/fitter/infra.pxd
wlsqm/fitter/impl.pyx wlsqm/fitter/impl.pxd
wlsqm/fitter/polyeval.pyx wlsqm/fitter/polyeval.pxd
wlsqm/fitter/interp.pyx wlsqm/fitter/interp.pxd
wlsqm/fitter/simple.pyx wlsqm/fitter/simple.pxd
wlsqm/fitter/expert.pyx
wlsqm/utils/lapackdrivers.pyx wlsqm/utils/lapackdrivers.pxd
wlsqm/utils/ptrwrap.pyx wlsqm/utils/ptrwrap.pxd
|| true
test:
needs: lint
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13", "3.14"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
# Apple Clang does not ship an OpenMP runtime; install libomp so that
# meson's `dependency('openmp', required: false)` can find it. If meson
# still cannot discover it the build falls back to serial and the tests
# still pass, but installing libomp keeps the macOS runner on the same
# parallel code path as Linux/Windows whenever possible.
- name: Install libomp (macOS)
if: runner.os == 'macOS'
run: brew install libomp
# Activate the MSVC toolchain on Windows so that meson picks up
# `cl.exe` instead of the runner's default MinGW-w64 gcc. The latter
# links our .pyd files against libgcc_s_seh-1.dll and libgomp-1.dll,
# which are not on the Python process's DLL search path at runtime
# (they live in MinGW's bin directory), resulting in "DLL load
# failed" on import. MSVC-built extensions link only against the
# universal CRT and vcomp140.dll, all of which are always on PATH
# for a 64-bit Python process. scipy/numpy use the same approach on
# their CI.
- uses: ilammy/msvc-dev-cmd@v1
if: runner.os == 'Windows'
- name: Install build and test dependencies
run: pip install meson-python meson ninja Cython numpy scipy pytest
- name: Install wlsqm
run: pip install --no-build-isolation -e .
- name: Run tests
run: pytest tests/ -v
build-wheels:
needs: test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v6
# Same MSVC activation as in the test job, and for the same reason:
# cibuildwheel does NOT automatically activate MSVC for meson-python
# builds on Windows (unlike distutils/setuptools-based projects where
# distutils auto-detects MSVC via the python-being-built-with logic).
# Without this step, meson picks up Strawberry Perl's bundled
# MinGW-w64 gcc from the runner PATH and the resulting .pyd files
# link against libgomp-1.dll / libgcc_s_seh-1.dll, which are not
# present in the wheel test environment.
- uses: ilammy/msvc-dev-cmd@v1
if: runner.os == 'Windows'
# cibuildwheel config lives in pyproject.toml ([tool.cibuildwheel]) —
# build list, skip list, test-requires, test-command, and the macOS
# before-all that installs conda-forge llvm-openmp via micromamba.
- uses: pypa/cibuildwheel@v3.4
- uses: actions/upload-artifact@v7
with:
name: wheels-${{ matrix.os }}
path: wheelhouse/*.whl
sdist:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- run: pip install build
- run: python -m build --sdist
- uses: actions/upload-artifact@v7
with:
name: sdist
path: dist/*.tar.gz
publish:
if: startsWith(github.ref, 'refs/tags/v')
needs: [build-wheels, sdist]
runs-on: ubuntu-latest
# Requires the `pypi` environment to be configured on GitHub with a
# trusted publisher for this repo + workflow + environment. No API token
# stored as a secret; the job mints a short-lived OIDC token instead.
environment: pypi
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v8
with:
path: dist/
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist/