-
Notifications
You must be signed in to change notification settings - Fork 235
313 lines (284 loc) · 11.3 KB
/
manual-build-wheelhouse.yml
File metadata and controls
313 lines (284 loc) · 11.3 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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
name: Manual Build Wheelhouse
on:
workflow_dispatch:
inputs:
pyaedt-branch:
description: "PyAEDT branch used to run the test"
default: 'main'
type: string
build-ubuntu-wheels:
description: "Build Ubuntu wheelhouse artifacts"
default: 'no'
type: choice
options:
- 'yes'
- 'no'
build-windows-wheels:
description: "Build Windows wheelhouse artifacts"
default: 'no'
type: choice
options:
- 'yes'
- 'no'
build-rocky-wheels:
description: "Build Rocky Linux wheelhouse artifacts"
default: 'no'
type: choice
options:
- 'yes'
- 'no'
python-version:
description: "Python version to build for (choose 'all' for all supported versions)"
default: '3.10'
type: choice
options:
- 'all'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
env:
PACKAGE_NAME: 'PyAEDT'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Disable all default permissions at workflow level for security (least privilege principle)
# Individual jobs will explicitly request only the permissions they need
permissions: {}
jobs:
build-wheelhouse-ubuntu-all:
if: github.event.inputs.build-ubuntu-wheels == 'yes' && github.event.inputs.python-version == 'all'
name: Build wheelhouse (Ubuntu, all)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10','3.11','3.12','3.13']
steps:
- name: Clone PyAEDT using specified input branch
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.inputs.pyaedt-branch }}
persist-credentials: false
- name: Build wheelhouse and perform smoke test
id: build-wheelhouse-ubuntu
uses: ansys/actions/build-wheelhouse@7d55ff0b9f67c77dae50a286d711ee1ae27b0a25 # v10.2.12
with:
checkout: false
library-name: ${{ env.PACKAGE_NAME }}
operating-system: ubuntu-latest
python-version: ${{ matrix.python-version }}
target: 'all'
use-python-cache: false
whitelist-license-check: 'fpdf2'
- name: Import python package
env:
ACTIVATE_VENV: ${{ steps.build-wheelhouse-ubuntu.outputs.activate-venv }}
shell: bash
run: |
${ACTIVATE_VENV}
python -c "import ansys.aedt.core; from ansys.aedt.core import __version__"
build-wheelhouse-ubuntu-single:
if: github.event.inputs.build-ubuntu-wheels == 'yes' && github.event.inputs.python-version != 'all'
name: Build wheelhouse (Ubuntu, single)
runs-on: ubuntu-latest
steps:
- name: Clone PyAEDT using specified input branch
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.inputs.pyaedt-branch }}
persist-credentials: false
- name: Build wheelhouse and perform smoke test
id: build-wheelhouse-ubuntu
uses: ansys/actions/build-wheelhouse@7d55ff0b9f67c77dae50a286d711ee1ae27b0a25 # v10.2.12
with:
checkout: false
library-name: ${{ env.PACKAGE_NAME }}
operating-system: ubuntu-latest
python-version: ${{ github.event.inputs.python-version }}
target: 'all'
use-python-cache: false
whitelist-license-check: 'fpdf2'
- name: Import python package
env:
ACTIVATE_VENV: ${{ steps.build-wheelhouse-ubuntu.outputs.activate-venv }}
shell: bash
run: |
${ACTIVATE_VENV}
python -c "import ansys.aedt.core; from ansys.aedt.core import __version__"
build-wheelhouse-windows-all:
if: github.event.inputs.build-windows-wheels == 'yes' && github.event.inputs.python-version == 'all'
name: Build wheelhouse (Windows, all)
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10','3.11','3.12','3.13']
steps:
- name: Clone PyAEDT using specified input branch
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.inputs.pyaedt-branch }}
persist-credentials: false
- name: Build wheelhouse and perform smoke test
id: build-wheelhouse-windows
uses: ansys/actions/build-wheelhouse@7d55ff0b9f67c77dae50a286d711ee1ae27b0a25 # v10.2.12
with:
checkout: false
library-name: ${{ env.PACKAGE_NAME }}
operating-system: windows-latest
python-version: ${{ matrix.python-version }}
target: 'all'
use-python-cache: false
whitelist-license-check: 'fpdf2'
- name: Import python package
env:
ACTIVATE_VENV: ${{ steps.build-wheelhouse-windows.outputs.activate-venv }}
shell: bash
run: |
${ACTIVATE_VENV}
python -c "import ansys.aedt.core; from ansys.aedt.core import __version__"
build-wheelhouse-windows-single:
if: github.event.inputs.build-windows-wheels == 'yes' && github.event.inputs.python-version != 'all'
name: Build wheelhouse (Windows, single)
runs-on: windows-latest
steps:
- name: Clone PyAEDT using specified input branch
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.inputs.pyaedt-branch }}
persist-credentials: false
- name: Build wheelhouse and perform smoke test
id: build-wheelhouse-windows
uses: ansys/actions/build-wheelhouse@7d55ff0b9f67c77dae50a286d711ee1ae27b0a25 # v10.2.12
with:
checkout: false
library-name: ${{ env.PACKAGE_NAME }}
operating-system: windows-latest
python-version: ${{ github.event.inputs.python-version }}
target: 'all'
use-python-cache: false
whitelist-license-check: 'fpdf2'
- name: Import python package
env:
ACTIVATE_VENV: ${{ steps.build-wheelhouse-windows.outputs.activate-venv }}
shell: bash
run: |
${ACTIVATE_VENV}
python -c "import ansys.aedt.core; from ansys.aedt.core import __version__"
build-wheelhouse-rocky-all:
if: github.event.inputs.build-rocky-wheels == 'yes' && github.event.inputs.python-version == 'all'
name: Build wheelhouse (Rocky Linux)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10','3.11','3.12','3.13']
container:
image: rockylinux/rockylinux:8@sha256:f5529992e67440c1a4ae7788244d4381c6909159a88eacd95b7523ae47ced82e
steps:
- name: Clone PyAEDT using specified input branch
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.inputs.pyaedt-branch }}
persist-credentials: false
- name: Install build deps
shell: bash
run: |
set -eux
dnf -y update
dnf groupinstall -y "Development Tools"
dnf -y install \
gcc wget make bzip2-devel zlib-devel xz-devel \
openssl-devel libffi-devel sqlite-devel \
readline-devel libuuid-devel expat-devel \
pkgconf-pkg-config ca-certificates
update-ca-trust
# NOTE: The Python provided by setup-python may be build against newer GLIBC (>=2.34)
# than available on Rocky Linux causing Python to fail. Using uv to install Python
# ensures a version compatible with the system GLIBC (manylinux_2_17 / 2_28), making
# venv creation and wheelhouse builds work.
- name: Set up uv
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
with:
enable-cache: false
prune-cache: true
- name: Pre-install specific Python version using uv
env:
PYTHON_VERSION: ${{ matrix.python-version }}
shell: bash
run: uv python install ${PYTHON_VERSION}
- name: Build wheelhouse and perform smoke test
id: build-wheelhouse-rocky
uses: ansys/actions/build-wheelhouse@7d55ff0b9f67c77dae50a286d711ee1ae27b0a25 # v10.2.12
with:
checkout: false
library-name: ${{ env.PACKAGE_NAME }}
operating-system: rocky-linux-8
python-version: ${{ matrix.python-version }}
target: 'all'
use-python-cache: false
whitelist-license-check: 'fpdf2'
- name: Import python package
env:
ACTIVATE_VENV: ${{ steps.build-wheelhouse-rocky.outputs.activate-venv }}
shell: bash
run: |
${ACTIVATE_VENV}
python -c "import ansys.aedt.core; from ansys.aedt.core import __version__"
build-wheelhouse-rocky-single:
if: github.event.inputs.build-rocky-wheels == 'yes' && github.event.inputs.python-version != 'all'
name: Build wheelhouse (Rocky Linux)
runs-on: ubuntu-latest
container:
image: rockylinux/rockylinux:8@sha256:f5529992e67440c1a4ae7788244d4381c6909159a88eacd95b7523ae47ced82e
steps:
- name: Clone PyAEDT using specified input branch
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.inputs.pyaedt-branch }}
persist-credentials: false
- name: Install build deps
shell: bash
run: |
set -eux
dnf -y update
dnf groupinstall -y "Development Tools"
dnf -y install \
gcc wget make bzip2-devel zlib-devel xz-devel \
openssl-devel libffi-devel sqlite-devel \
readline-devel libuuid-devel expat-devel \
pkgconf-pkg-config ca-certificates
update-ca-trust
# NOTE: The Python provided by setup-python may be build against newer GLIBC (>=2.34)
# than available on Rocky Linux causing Python to fail. Using uv to install Python
# ensures a version compatible with the system GLIBC (manylinux_2_17 / 2_28), making
# venv creation and wheelhouse builds work.
- name: Set up uv
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
with:
enable-cache: false
prune-cache: true
- name: Pre-install specific Python version using uv
env:
PYTHON_VERSION: ${{ github.event.inputs.python-version }}
shell: bash
run: uv python install ${PYTHON_VERSION}
- name: Build wheelhouse and perform smoke test
id: build-wheelhouse-rocky
uses: ansys/actions/build-wheelhouse@7d55ff0b9f67c77dae50a286d711ee1ae27b0a25 # v10.2.12
with:
checkout: false
library-name: ${{ env.PACKAGE_NAME }}
operating-system: rocky-linux-8
python-version: ${{ github.event.inputs.python-version }}
target: 'all'
use-python-cache: false
whitelist-license-check: 'fpdf2'
- name: Import python package
env:
ACTIVATE_VENV: ${{ steps.build-wheelhouse-rocky.outputs.activate-venv }}
shell: bash
run: |
${ACTIVATE_VENV}
python -c "import ansys.aedt.core; from ansys.aedt.core import __version__"