-
Notifications
You must be signed in to change notification settings - Fork 110
299 lines (257 loc) · 8.34 KB
/
build_and_test.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
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
name: Build and test ERT and docs
on:
push:
branches:
- main
- 'version-**'
tags: "*"
pull_request:
env:
ERT_SHOW_BACKTRACE: 1
ECL_SKIP_SIGNAL: 1
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build-test-cmake:
name: Run C++ tests and coverage
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Ubuntu dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update -y
sudo apt-get install -y clang-tidy
- uses: actions/setup-python@v5
id: setup_python
with:
python-version: '3.12'
- uses: actions/cache@v4
with:
path: ~/.conan/
key: ${{ matrix.os }}-conan-${{ hashFiles('**/CMakeLists.txt') }}
- name: Install dependencies from PyPI
run: |
python3 -m pip install "conan<2" pybind11 resdata
echo "PIP_PKGS_PATH=$(python3 -m pip show conan | grep Location | cut -d ' ' -f 2 | sed -e 's@/lib/.*site-packages$@/bin@')" >> "$GITHUB_ENV"
- name: Build ert clib
run: |
export PATH=$PATH:${{ env.PIP_PKGS_PATH }}
mkdir cmake-build
cmake -S src/clib -B cmake-build -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTS=ON -DCOVERAGE=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
cmake --build cmake-build "-j$(nproc)"
- name: find changed cpp files
id: find_changed_files
run: echo "changed_files=$(git diff --name-only ${{github.sha}} ${{github.event.pull_request.base.sha}} | tr ' ' '\n' | xargs ls -d 2>/dev/null | grep -E '\.(hpp|cpp)$' | tr '\n' ' ')" >> "$GITHUB_OUTPUT"
- run: echo ::add-matcher::.github/clang-tidy-matcher.json
- name: run clang-tidy
run: clang-tidy -p cmake-build/ ${{steps.find_changed_files.outputs.changed_files}}
if: steps.find_changed_files.outputs.changed_files != ''
- name: Run tests
run: |
cd cmake-build
export PATH=$PWD/bin:$PATH
ctest --output-on-failure
- name: Install gcovr
if: matrix.os == 'ubuntu-latest'
run: |
python3 -m pip install gcovr
- name: generate coverage report
if: matrix.os == 'ubuntu-latest'
run: |
export PATH=$PATH:${{ env.PIP_PKGS_PATH }}
gcovr -r src/clib/ --gcov-ignore-parse-errors=negative_hits.warn --exclude-directories ".*tests" cmake-build/ --xml -o cov.xml
- name: Upload c coverage to Codecov
uses: codecov/codecov-action@v4
id: codecov1
if: matrix.os == 'ubuntu-latest'
continue-on-error: true
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: cov.xml
- name: codecov retry sleep
if: matrix.os == 'ubuntu-latest' && steps.codecov1.outcome == 'failure'
run: |
sleep 30
- name: Codecov retry
uses: codecov/codecov-action@v4
if: matrix.os == 'ubuntu-latest' && steps.codecov1.outcome == 'failure'
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: cov.xml
fail_ci_if_error: ${{ github.ref == 'refs/heads/main' }}
build-linux:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
uses: ./.github/workflows/build-wheels-linux.yml
with:
python-version: ${{ matrix.python-version }}
build-mac-for-tags:
if: github.ref_type == 'tag' # only build all variants for tags
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
# https://github.com/actions/runner-images?tab=readme-ov-file#available-images
os: [ 'macos-13', 'macos-14', 'macos-14-large']
exclude:
- os: 'macos-14'
python-version: '3.8'
- os: 'macos-14'
python-version: '3.9'
- os: 'macos-14'
python-version: '3.10'
- os: 'macos-14-large'
python-version: '3.8'
- os: 'macos-14-large'
python-version: '3.9'
- os: 'macos-14-large'
python-version: '3.10'
- os: 'macos-13'
python-version: '3.11'
- os: 'macos-13'
python-version: '3.12'
uses: ./.github/workflows/build-wheels-macos.yml
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}
build-mac:
if: github.ref_type != 'tag' # one combination when not tag
strategy:
fail-fast: false
matrix:
python-version: [ '3.12' ]
os: [ 'macos-latest' ]
uses: ./.github/workflows/build-wheels-macos.yml
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}
test-linux:
needs: [build-linux]
strategy:
fail-fast: false
matrix:
test-type: [ 'integration-tests', 'unit-tests', 'gui-test' ]
python-version: [ '3.8', '3.11', '3.12' ]
os: [ ubuntu-latest ]
uses: ./.github/workflows/test_ert.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
test-type: ${{ matrix.test-type }}
test-slurm:
needs: [build-linux]
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.8', '3.11', '3.12' ]
uses: ./.github/workflows/test_ert_with_slurm.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
test-mac-for-tags:
if: github.ref_type == 'tag' # only test all variants for tags
needs: [build-mac-for-tags]
strategy:
fail-fast: false
matrix:
test-type: [ 'integration-tests', 'unit-tests', 'gui-test' ]
python-version: [ '3.8', '3.12' ]
os: [ 'macos-13', 'macos-14', 'macos-14-large']
exclude:
- os: 'macos-14'
python-version: '3.8'
- os: 'macos-14-large'
python-version: '3.8'
- os: 'macos-13'
python-version: '3.12'
uses: ./.github/workflows/test_ert.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
test-type: ${{ matrix.test-type }}
test-mac:
if: github.ref_type != 'tag' # one combination when not tag
needs: [build-mac]
strategy:
fail-fast: false
matrix:
test-type: [ 'integration-tests', 'unit-tests', 'gui-test' ]
python-version: [ '3.12' ]
os: [ 'macos-latest' ]
uses: ./.github/workflows/test_ert.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
test-type: ${{ matrix.test-type }}
docs-ert:
name: Test ert docs
needs: [build-linux]
strategy:
fail-fast: false
matrix:
python-version: ['3.12']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: './.github/actions/install_dependencies'
with:
os: ${{ matrix.os }}
- name: Install pandoc
run: |
sudo apt install pandoc
- uses: actions/setup-python@v5
id: setup_python
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: |
pyproject.toml
- name: Get wheels
uses: actions/download-artifact@v4
with:
name: ${{ matrix.os }} Python ${{ matrix.python-version }} wheel
- name: Install wheel
run: |
find . -name "*.whl" -exec pip install "{}[dev]" \;
- name: Make test directory
run: |
mkdir tmp_tests
mv tests tmp_tests/tests
mv test-data tmp_tests/test-data
mkdir tmp_tests/.git
- name: Test docs
run: |
sphinx-build -n -v -E -W ./docs ./tmp/ert_docs
publish:
name: Publish to PyPI
runs-on: ubuntu-latest
needs: [build-test-cmake, test-linux, test-mac-for-tags, docs-ert]
permissions:
id-token: write
# If this is a tagged release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- name: Get wheels
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Move to dist/
run: |
mkdir dist
find artifacts -name "*.whl" -exec mv '{}' dist/ \;
- name: Publish to PyPI
uses: pypa/[email protected]