forked from equinor/ert
-
Notifications
You must be signed in to change notification settings - Fork 0
274 lines (225 loc) · 7.17 KB
/
build.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
name: Python package
on:
push:
branches:
- main
- 'version-**'
tags: "*"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
ERT_SHOW_BACKTRACE: 1
ECL_SKIP_SIGNAL: 1
jobs:
build-test-cmake:
name: CMake
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install Ubuntu dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update -y
sudo apt-get install -y valgrind
- name: Install dependencies from PyPI
run: |
python3 -m pip install conan pybind11
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 libecl
run: |
export PATH=$PATH:${{ env.PIP_PKGS_PATH }}
git clone https://github.com/equinor/libecl
mkdir libecl/build
cmake -S libecl -B libecl/build -DCMAKE_BUILD_TYPE=RelWithDebInfo
sudo cmake --build libecl/build --target install
sudo rm -rf libecl
- 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=RelWithDebInfo -DBUILD_TESTS=ON -DCOVERAGE=ON
cmake --build cmake-build -j2
- name: Run tests
run: |
cd cmake-build
export PATH=$PWD/bin:$PATH
ctest --output-on-failure
- name: Install gcovr
run: |
python3 -m pip install gcovr
- name: generate coverage report
run: |
export PATH=$PATH:${{ env.PIP_PKGS_PATH }}
gcovr -r src/clib/ --exclude-directories ".*tests" cmake-build/ --xml -o cov.xml
- name: Upload c coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: cov.xml
build-wheels:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: './.github/actions/install_dependencies'
with:
os: ${{ matrix.os }}
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build Linux Wheel
uses: docker://quay.io/pypa/manylinux2014_x86_64
with:
entrypoint: /github/workspace/ci/github/build_linux_wheel.sh
args: ${{ matrix.python-version }}
if: matrix.os == 'ubuntu-latest'
- name: Build macOS Wheel
run: pip wheel . --no-deps -w dist
if: matrix.os == 'macos-latest'
- name: Upload wheel as artifact
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.os }} Python ${{ matrix.python-version }} wheel
path: dist/*
tests-ert:
name: Run ert tests
needs: [build-wheels]
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
os: [ubuntu-latest, macos-latest]
test-type: ['integration-tests', 'unit-tests', 'gui-test']
# Excluded to keep build times down on Github actions
exclude:
- os: macos-latest
python-version: '3.9'
- os: macos-latest
test-type: 'gui-test'
- os: ubuntu-latest
python-version: '3.9'
test-type: 'gui-test'
- os: ubuntu-latest
python-version: '3.10'
test-type: 'gui-test'
- os: macos-latest
python-version: '3.10'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: './.github/actions/install_dependencies'
if: matrix.test-type == 'gui-test'
with:
os: ${{ matrix.os }}
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Get wheels
uses: actions/download-artifact@v2
with:
name: ${{ matrix.os }} Python ${{ matrix.python-version }} wheel
- name: Install wheel and test dependencies
run: |
find . -name "*.whl" -exec pip install {} \;
pip install -r dev-requirements.txt
- name: Test GUI
if: matrix.test-type == 'gui-test'
env:
DISPLAY: ':99.0'
run: |
ci/github/start_herbstluftwm.sh &
sleep 5
pytest tests -sv --hypothesis-profile=ci -m "requires_window_manager"
- name: Unit Test
if: matrix.test-type == 'unit-tests'
run: |
pytest tests -sv --hypothesis-profile=ci -m "not integration_test and not requires_window_manager"
- name: Integration Test
if: matrix.test-type == 'integration-tests'
run: |
pytest tests -sv --hypothesis-profile=ci -m "integration_test and not requires_window_manager"
- name: Test for a clean repository
run: |
# Run this before the 'Test CLI' entry below, which produces a few files that are accepted for now. Exclude the wheel.
git status --porcelain | sed '/ert.*.whl$/d'
test -z "$(git status --porcelain | sed '/ert.*.whl$/d')"
- name: Test CLI
run: |
ert --help
docs-ert:
name: Test ert docs
needs: [build-wheels]
timeout-minutes: 3
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: './.github/actions/install_dependencies'
with:
os: ${{ matrix.os }}
- name: Install PlantUML
run: |
sudo apt-get install plantuml
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Get wheels
uses: actions/download-artifact@v2
with:
name: ${{ matrix.os }} Python ${{ matrix.python-version }} wheel
- name: Install wheel and test dependencies
run: |
find . -name "*.whl" -exec pip install {} \;
pip install -r dev-requirements.txt
- name: Make test directory
run: |
mkdir tmp_tests
mv tests tmp_tests/tests
mv test-data tmp_tests/test-data
mv setup.cfg tmp_tests/setup.cfg
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, tests-ert, docs-ert]
# If this is a tagged release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- name: Get wheels
uses: actions/download-artifact@v2
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]
with:
user: statoil-travis
password: ${{ secrets.pypi_password }}