-
Notifications
You must be signed in to change notification settings - Fork 0
282 lines (251 loc) · 10.4 KB
/
Copy pathci.yml
File metadata and controls
282 lines (251 loc) · 10.4 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
277
278
279
280
281
282
name: CI
on:
pull_request:
workflow_dispatch:
inputs:
linux_x86_64:
description: Build for Linux x86_64
type: boolean
default: true
linux_aarch64:
description: Build for Linux ARM64
type: boolean
default: false
macos_arm64:
description: Build for macOS ARM64
type: boolean
default: true
macos_x86_64:
description: Build for macOS x86_64
type: boolean
default: false
windows_x86_64:
description: Build for Windows x86_64
type: boolean
default: true
windows_arm64:
description: Build for Windows ARM64
type: boolean
default: false
upload_artifacts:
description: Upload wheels and one source distribution
type: boolean
default: false
workflow_call:
inputs:
linux_x86_64:
description: Build for Linux x86_64
type: boolean
default: true
linux_aarch64:
description: Build for Linux ARM64
type: boolean
default: false
macos_arm64:
description: Build for macOS ARM64
type: boolean
default: true
macos_x86_64:
description: Build for macOS x86_64
type: boolean
default: false
windows_x86_64:
description: Build for Windows x86_64
type: boolean
default: true
windows_arm64:
description: Build for Windows ARM64
type: boolean
default: false
upload_artifacts:
description: Upload wheels and one source distribution
type: boolean
default: false
permissions:
contents: read
jobs:
linux:
if: github.event_name == 'pull_request' || inputs.linux_x86_64 || inputs.linux_aarch64
strategy:
fail-fast: false
matrix:
include: ${{ fromJSON(
github.event_name == 'pull_request' &&
'[{"arch":"x86_64","runner":"ubuntu-latest","python_arch":"x64","primary":true}]' ||
inputs.linux_x86_64 && inputs.linux_aarch64 &&
'[{"arch":"x86_64","runner":"ubuntu-latest","python_arch":"x64","primary":true},{"arch":"aarch64","runner":"ubuntu-24.04-arm","python_arch":"arm64","primary":false}]' ||
inputs.linux_x86_64 &&
'[{"arch":"x86_64","runner":"ubuntu-latest","python_arch":"x64","primary":true}]' ||
'[{"arch":"aarch64","runner":"ubuntu-24.04-arm","python_arch":"arm64","primary":true}]'
) }}
name: linux-${{ matrix.arch }}
runs-on: ${{ matrix.runner }}
steps:
- name: Check out repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.14"
architecture: ${{ matrix.python_arch }}
- name: Build manylinux wheel
run: ./container-build.sh "${{ matrix.arch }}"
- name: Build source distribution
if: inputs.upload_artifacts && matrix.primary
run: |
python -m pip install build
python -m build --sdist .
- name: Install wheel into test environment
run: |
python -m venv "$RUNNER_TEMP/spicedmodel-test-venv"
"$RUNNER_TEMP/spicedmodel-test-venv/bin/python" -m pip install wheelhouse/*.whl pytest
- name: Run installed-package tests
working-directory: ${{ runner.temp }}
env:
MPLCONFIGDIR: ${{ runner.temp }}/matplotlib
run: |
"$RUNNER_TEMP/spicedmodel-test-venv/bin/python" -m pytest "$GITHUB_WORKSPACE/tests"
- name: Upload wheel
if: inputs.upload_artifacts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: wheel-linux-${{ matrix.arch }}
path: wheelhouse/*.whl
if-no-files-found: error
- name: Upload source distribution
if: inputs.upload_artifacts && matrix.primary
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: source-distribution
path: dist/*.tar.gz
if-no-files-found: error
macos:
if: github.event_name == 'pull_request' || inputs.macos_arm64 || inputs.macos_x86_64
strategy:
fail-fast: false
matrix:
include: ${{ fromJSON(
github.event_name == 'pull_request' &&
'[{"arch":"arm64","runner":"macos-latest","python_arch":"arm64","deployment_target":"11.0","wheel_platform":"macosx_11_0_arm64","primary":true}]' ||
inputs.macos_arm64 && inputs.macos_x86_64 &&
'[{"arch":"arm64","runner":"macos-latest","python_arch":"arm64","deployment_target":"11.0","wheel_platform":"macosx_11_0_arm64","primary":true},{"arch":"x86_64","runner":"macos-15-intel","python_arch":"x64","deployment_target":"10.15","wheel_platform":"macosx_10_15_x86_64","primary":false}]' ||
inputs.macos_arm64 &&
'[{"arch":"arm64","runner":"macos-latest","python_arch":"arm64","deployment_target":"11.0","wheel_platform":"macosx_11_0_arm64","primary":true}]' ||
'[{"arch":"x86_64","runner":"macos-15-intel","python_arch":"x64","deployment_target":"10.15","wheel_platform":"macosx_10_15_x86_64","primary":true}]'
) }}
name: macos-${{ matrix.arch }}
runs-on: ${{ matrix.runner }}
env:
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.deployment_target }}
steps:
- name: Check out repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.14"
architecture: ${{ matrix.python_arch }}
- name: Install OpenMP
run: |
brew install libomp
echo "OpenMP_ROOT=$(brew --prefix libomp)" >> "$GITHUB_ENV"
- name: Build wheel
run: |
python -m pip install build
python -m build --wheel .
- name: Verify wheel deployment target
run: test -f dist/spicedmodel-*-${{ matrix.wheel_platform }}.whl
- name: Build source distribution
if: inputs.upload_artifacts && matrix.primary && !inputs.linux_x86_64 && !inputs.linux_aarch64
run: python -m build --sdist .
- name: Install wheel into test environment
run: |
python -m venv "$RUNNER_TEMP/spicedmodel-test-venv"
"$RUNNER_TEMP/spicedmodel-test-venv/bin/python" -m pip install dist/*.whl pytest
- name: Run installed-package tests
working-directory: ${{ runner.temp }}
env:
MPLCONFIGDIR: ${{ runner.temp }}/matplotlib
run: |
"$RUNNER_TEMP/spicedmodel-test-venv/bin/python" -m pytest "$GITHUB_WORKSPACE/tests"
- name: Upload wheel
if: inputs.upload_artifacts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: wheel-macos-${{ matrix.arch }}
path: dist/*.whl
if-no-files-found: error
- name: Upload source distribution
if: inputs.upload_artifacts && matrix.primary && !inputs.linux_x86_64 && !inputs.linux_aarch64
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: source-distribution
path: dist/*.tar.gz
if-no-files-found: error
windows:
if: github.event_name == 'pull_request' || inputs.windows_x86_64 || inputs.windows_arm64
strategy:
fail-fast: false
matrix:
include: ${{ fromJSON(
github.event_name == 'pull_request' &&
'[{"arch":"x86_64","runner":"windows-latest","python_arch":"x64","primary":true}]' ||
inputs.windows_x86_64 && inputs.windows_arm64 &&
'[{"arch":"x86_64","runner":"windows-latest","python_arch":"x64","primary":true},{"arch":"arm64","runner":"windows-11-arm","python_arch":"arm64","primary":false}]' ||
inputs.windows_x86_64 &&
'[{"arch":"x86_64","runner":"windows-latest","python_arch":"x64","primary":true}]' ||
'[{"arch":"arm64","runner":"windows-11-arm","python_arch":"arm64","primary":true}]'
) }}
name: windows-${{ matrix.arch }}
runs-on: ${{ matrix.runner }}
steps:
- name: Check out repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.14"
architecture: ${{ matrix.python_arch }}
- name: Build wheel with MSVC
run: |
python -m pip install build
python -m build --wheel .
- name: Build source distribution
if: inputs.upload_artifacts && matrix.primary && !inputs.linux_x86_64 && !inputs.linux_aarch64 && !inputs.macos_arm64 && !inputs.macos_x86_64
run: python -m build --sdist .
- name: Install wheel into test environment
shell: pwsh
run: |
$venv = Join-Path $env:RUNNER_TEMP "spicedmodel-test-venv"
python -m venv $venv
$python = Join-Path $venv "Scripts/python.exe"
$wheel = Get-ChildItem "dist/*.whl" | Select-Object -First 1
& $python -m pip install $wheel.FullName pytest
- name: Run installed-package tests
shell: pwsh
working-directory: ${{ runner.temp }}
env:
MPLCONFIGDIR: ${{ runner.temp }}/matplotlib
run: |
$python = Join-Path $env:RUNNER_TEMP "spicedmodel-test-venv/Scripts/python.exe"
& $python -m pytest "$env:GITHUB_WORKSPACE/tests"
- name: Upload wheel
if: inputs.upload_artifacts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: wheel-windows-${{ matrix.arch }}
path: dist/*.whl
if-no-files-found: error
- name: Upload source distribution
if: inputs.upload_artifacts && matrix.primary && !inputs.linux_x86_64 && !inputs.linux_aarch64 && !inputs.macos_arm64 && !inputs.macos_x86_64
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: source-distribution
path: dist/*.tar.gz
if-no-files-found: error