-
Notifications
You must be signed in to change notification settings - Fork 21
262 lines (225 loc) · 8.25 KB
/
build-test-wheel.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
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
name: Build and test UEDGE - write wheel files if tests pass
on: [push, pull_request]
jobs:
check-requests:
name: Checks whether tests and/or wheels are requested
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set UBUNTU tags env variables.
if: runner.os == 'Linux'
run: |
# Set "checking" variable to false by default.
# Get your last commit message, not the merge commit.
text=$(git log -1 --no-merges --pretty=%B)
# Read the commit message into an array split by "#".
readarray -d "#" -t commit_message <<< "$text"
# Sanity check.
echo "Tags are: ${commit_message[1]}"
# Add tags and overwrite "checking" variable to true if there are tags.
if [[ "${commit_message[1]}" == *"@notest"* ]]; then
echo "Seting test flags to FALSE"
echo "test=FALSE" >> $GITHUB_OUTPUT
else
echo "Seting test flags to TRUE"
echo "test=TRUE" >> $GITHUB_OUTPUT
fi
if [[ "${commit_message[1]}" == *"@nowheel"* ]]; then
echo "Seting wheel flags to FALSE"
echo "wheel=FALSE" >> $GITHUB_OUTPUT
else
echo "Seting wheel flags to TRUE"
echo "wheel=TRUE" >> $GITHUB_OUTPUT
fi
run-all-tests:
name: Runs test ${{ matrix.tests }}
runs-on: ubuntu-latest
needs: check-requests
if: needs.check-requests.outputs.test != 'TRUE'
strategy:
fail-fast: false
matrix:
python-version: [3.11]
tests: [fulltests, unittests/D+C, unittests/D_mols, unittests/D_only, unittests/slab_D_only]
steps:
- uses: actions/checkout@v4
- name: Check branch and define test branch
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
run: |
echo "Branch is:", $BRANCH_NAME
if [[ ${BRANCH_NAME} == *"master"* ]]; then
echo "testbranch=pytests" >> $GITHUB_ENV
echo "Using pytests test branch"
else
echo "testbranch=pytests-develop" >> $GITHUB_ENV
echo "Using pytests-develop test branch"
fi
- name: Echo test branch name
run: |
echo ${{ env.testbranch }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip
python -m pip install forthon>=0.10.7 numpy==1.26.4 h5py
python -m pip install flake8
python -m pip install pytest-isolate pytest-xdist
- name: Build UEDGE
run: |
python -m pip install . -C "--build-option=--serial"
- name: Switch to pytests branch
uses: actions/checkout@v4
with:
ref: ${{ env.testbranch }}
repository: LLNL/UEDGE
- name: Test with pytest
run: |
# Create a clean UEDGE instance for every test
pytest --isolate --tb=long pytests/${{ matrix.tests }} -s
build_wheels:
name: Build wheels on ${{ matrix.os }} for Python ${{ matrix.pyver }}
needs: [run-all-tests, check-requests]
if: needs.check-requests.outputs.wheels != 'TRUE'
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-14]
pyver: [cp38, cp39, cp310, cp311, cp312]
steps:
- name: Checks out repo
uses: actions/checkout@v4
- name: Set up macOS-specific paths and libraries
if: runner.os == 'macOS'
run: |
# Symlink the correct gfortran compiler
ln -s $(brew --prefix)/bin/gfortran-13 $(brew --prefix)/bin/gfortran
# Install OMP libraries
brew install libomp
# Link environments to env for later us with cibuildwheel
echo "LIBOMPPATH=$(brew --prefix libomp)" >> $GITHUB_ENV
echo "LLVMCLANG=$(brew --prefix llvm@15)" >> $GITHUB_ENV
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: ${{matrix.pyver}}-*
CIBW_SKIP: "pp37-* cp37-* *-win32 *-manylinux_i686"
CIBW_ARCHS_LINUX: auto
CIBW_BEFORE_BUILD: pip install numpy 'forthon>=0.10.7' 'build<0.10.0'
CC: ${{ env.LLVMCLANG }}/bin/clang
LDFLAGS: "-L${{env.LIBOMPPATH }}/lib"
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ matrix.pyver }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build_wheels_pypy:
name: Build PyPy wheels on ${{ matrix.os }}
if: false
# if: github.event_name == 'pull_request'
needs: run-all-tests
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-14]
steps:
- name: Checks out repo
uses: actions/checkout@v4
- name: Set up macOS-specific paths and libraries
if: runner.os == 'macOS'
run: |
# Symlink the correct gfortran compiler
ln -s $(brew --prefix)/bin/gfortran-13 $(brew --prefix)/bin/gfortran
# Install OMP libraries
brew install libomp
# Link environments to env for later us with cibuildwheel
echo "LIBOMPPATH=$(brew --prefix libomp)" >> $GITHUB_ENV
echo "LLVMCLANG=$(brew --prefix llvm@15)" >> $GITHUB_ENV
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: pp*
CIBW_SKIP: "pp37-* cp37-* *-win32 *-manylinux_i686"
CIBW_BEFORE_BUILD: pip install numpy 'forthon>=0.10.7' 'build<0.10.0'
CC: ${{ env.LLVMCLANG }}/bin/clang
LDFLAGS: "-L${{env.LIBOMPPATH }}/lib"
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: cibw-wheels-pyp-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build_wheels_cross:
name: Build Linux cross-wheels
if: false
needs: run-all-tests
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
pyver: [cp38, cp39, cp310, cp311, cp312]
arch: [aarch64, ppc64le]
steps:
- name: Checks out repo
uses: actions/checkout@v4
- name: Set up QEMU for multi-arch build
uses: docker/setup-qemu-action@v2
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: ${{matrix.pyver}}-*
IBW_SKIP: cp37-*
CIBW_ARCHS: ${{matrix.arch}}
CIBW_BEFORE_BUILD: pip install numpy 'forthon>=0.10.7' 'build<0.10.0'
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: cibw-cross-wheels-${{ matrix.arch }}-${{ matrix.pyver }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build_wheels_cross_pypy:
name: Build Linux PyPy cross-wheels
if: false
needs: run-all-tests
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
steps:
- name: Checks out repo
uses: actions/checkout@v4
- name: Set up QEMU for multi-arch build
uses: docker/setup-qemu-action@v2
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: pp*
CIBW_SKIP: "pp37-* cp37-* *-win32 *-manylinux_i686"
CIBW_BEFORE_BUILD: pip install numpy 'forthon>=0.10.7' 'build<0.10.0'
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: cibw-cross-wheels-pypy-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
gather_wheels:
name: Gather built wheels
needs: [build_wheels] #, build_wheels_pypy]
# if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Download all Artifacts and merges them
uses: actions/download-artifact@v4
with:
path: wheels
merge-multiple: true
- name: Upload all Artifacts in a single Archive
uses: actions/upload-artifact@v4
with:
name: all_wheels
path: wheels