-
Notifications
You must be signed in to change notification settings - Fork 94
172 lines (137 loc) · 4.32 KB
/
testing.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
name: testing
on:
push:
branches:
- main
- 'version-**'
tags: "*"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build-test-cmake:
name: CMake
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-13', 'macos-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
# required for `git describe --tags` to work
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python3 -m pip install "conan<2"
- name: Build
run: |
python3 -m pip install -r requirements.txt
mkdir cmake-build
cmake -S . -B cmake-build -DBUILD_TESTS=ON -DRST_DOC=ON
cmake --build cmake-build
- name: Run tests
run: |
cd cmake-build
export DYLD_LIBRARY_PATH=$PWD/lib
ctest --output-on-failure
env:
RD_SKIP_SIGNAL: absolutely
ERT_SHOW_BACKTRACE: yes please!
build-test-wheel:
name: Python
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-13', 'macos-latest', 'windows-2019']
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
exclude:
- os: macos-latest
python: '3.8'
- os: macos-latest
python: '3.9'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
# required for `git describe --tags` to work
fetch-depth: 0
- 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 }}
if: matrix.os == 'ubuntu-latest'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Build macOS Wheel
if: runner.os == 'macOS'
run: pip wheel . --no-deps -w dist
- name: Build Windows Wheel
if: runner.os == 'windows'
run: |
python.exe -m pip install -U build
python.exe -m build --wheel
- name: Upload wheel as artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }} Python ${{ matrix.python }} wheel
path: dist/*
- name: Install non-windows
if: runner.os != 'windows'
run: pip install dist/*
- name: Install windows
if: runner.os == 'windows'
run: Get-ChildItem dist\* | ForEach-Object { python.exe -m pip install $_.FullName }
- name: Run Python tests non-windows
if: runner.os != 'windows'
run: |
# Runs tests on installed distribution from an empty directory
python -m pip install -r test_requirements.txt
# pytest adds every directory up-to and including python/ into sys.path,
# meaning that "import resdata" will import python/resdata and not the installed
# one. This doesn't work because the resdata.so library only exists in
# site-packages, so we copy directories required by the tests out into its
# own temporary directory.
mkdir test-run; cd test-run
mkdir -p {.git,python}
ln -s {..,$PWD}/bin
ln -s {..,$PWD}/lib
ln -s {..,$PWD}/test-data
cp -R {..,$PWD}/python/tests
# Env vars
export RD_SKIP_SIGNAL=1
export ERT_SHOW_BACKTRACE=1
# Run tests
python -m pytest python/tests
- name: Run Python tests windows
if: runner.os == 'windows'
run: |
python.exe -c "import resdata; print(resdata.__version__)"
publish:
name: Publish to PyPI
runs-on: ubuntu-latest
needs: [build-test-wheel]
# 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]
with:
password: ${{ secrets.PYPI_TOKEN_RESDATA }}
skip-existing: true