-
Notifications
You must be signed in to change notification settings - Fork 11
238 lines (201 loc) · 6.8 KB
/
ci.yaml
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
name: Testing and release
on:
push:
branches:
- main
- development
tags:
# The regex: /^v?((\d+)(\.\d+)*)(-?(a|b|c|rc|alpha|beta)([0-9]+)?)?$
- 'v[0-9].[0-9]+.[0-9]+*'
pull_request:
branches:
- main
- development
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build_linux:
name: Build-Test Linux
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- uses: actions/setup-python@v5
id: pyexe
with:
python-version: '3.10'
# - name: Setup python libs
# id: pyexe
# run: |
# python3 --version
# python3 -m pip install pytest
# py_exe_path=$(which python3)
# echo ::set-output name=path::$py_exe_path
- name: Resolve dependencies
run: |
sudo apt-get update
sudo apt-get install libnetcdf-c++4-dev libnetcdf-dev xorg-dev libeigen3-dev pybind11-dev
- name: Build and test
run: |
mkdir -p build && cd build;
cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_PYMEM3DG=ON -DSUITESPARSE=OFF -DWITH_NETCDF=ON -DPython_EXECUTABLE:FILEPATH=${{ steps.pyexe.outputs.python-path }} --log-level=DEBUG ..
cmake --build . --config Release -j 4
ctest -C Release -V -j 4
build_macos:
name: Build-Test macOS
strategy:
fail-fast: false
matrix:
os: [macos-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- uses: actions/setup-python@v5
id: pyexe
with:
python-version: '3.10'
# - name: Setup python libs
# id: pyexe
# run: |
# python3 --version
# # python3 -m pip install pytest
# py_exe_path=$(which python3)
# echo ::set-output name=path::$py_exe_path
- name: Resolve dependencies
run: brew install netcdf eigen pybind11 netcdf-cxx
- name: Build
run: |
mkdir -p build && cd build;
cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_PYMEM3DG=ON -DSUITESPARSE=OFF -DWITH_NETCDF=ON -DPython_EXECUTABLE:FILEPATH=${{ steps.pyexe.outputs.python-path }} --log-level=DEBUG ..
cmake --build . --config Release -j 4
- name: Test
run: ctest -C Release -V -j 4
# build_windows:
# name: Build-Test Windows
# strategy:
# fail-fast: false
# matrix:
# os: [windows-latest]
# runs-on: ${{ matrix.os }}
# defaults:
# run:
# shell: bash
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
# submodules: recursive
# - name: Setup python libs
# id: pyexe
# run: |
# python --version
# python -m pip install pytest
# py_exe_path=$(which python)
# echo ::set-output name=path::$py_exe_path
# - name: Restore from cache and install vcpkg
# # Download and build vcpkg, without installing any port. If content is cached already, it is a no-op.
# uses: lukka/run-vcpkg@v11
# with:
# vcpkgGitCommitId: 5c9f906558f9bb12ee9811d6edc98ec9255c6cda5
# setupOnly: true
# - name: Download libraries
# run: $VCPKG_ROOT/vcpkg install netcdf-c:x64-windows netcdf-cxx4:x64-windows eigen3:x64-windows
# - name: Build and test
# run: |
# mkdir -p build && cd build;
# cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_PYMEM3DG=ON -DSUITESPARSE=OFF -DWITH_NETCDF=ON -DPython_EXECUTABLE:FILEPATH=${{ steps.pyexe.outputs.path }} -DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake" ..
# cmake --build . --config Release -j 4
# ctest -C Release -V -j 4
deploy_documentation:
name: Deploy documentation to Github pages
runs-on: ubuntu-latest
# needs: [build_windows, build_linux, build_macos]
# if: github.ref == 'refs/heads/master'
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Get Project Version
id: version
run: |
mem3dg_version=$(git describe --tags --always --dirty)
echo $mem3dg_version
echo ::set-output name=version::$mem3dg_version
- name: Configure python version
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Setup python libs
id: pyexe
run: |
python3 --version
py_exe_path=$(which python3)
echo ::set-output name=path::$py_exe_path
- name: Resolve dependencies
run: |
sudo apt-get update
sudo apt-get install libnetcdf-c++4-dev libnetcdf-dev xorg-dev libeigen3-dev pybind11-dev ninja-build doxygen
- name: Build pymem3dg and install
run: |
python3 -m pip install -v ".[docs]"
- name: Build docs
run: |
mkdir -p build && cd build;
cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_MEM3DG_DOCS=ON -DBUILD_PYMEM3DG=ON -DSUITESPARSE=OFF -DWITH_NETCDF=ON -DPython_EXECUTABLE:FILEPATH=${{ steps.pyexe.outputs.path }} ..
cmake --build . --target mem3dg_doxy_docs --config Release -j 4
cmake --build . --target mem3dg_sphinx_docs --config Release -j 4
- name: Deploy cpp docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
destination_dir: ${{ steps.version.outputs.version }}/cpp
publish_dir: ./build/docs/cpp/html
enable_jekyll: true
- name: Deploy python docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
destination_dir: ${{ steps.version.outputs.version }}/py
publish_dir: ./build/docs/py/html
enable_jekyll: true
deploy_to_pypi:
name: Deploy to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
needs: [build_linux, build_macos]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Update python libs
run: python -m pip install build
- name: Configures source dist
run: python -m build --sdist
- name: Display structure of files
run: ls -R
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}