-
Notifications
You must be signed in to change notification settings - Fork 17
282 lines (248 loc) · 9.74 KB
/
ubuntu.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
name: Linux
on:
pull_request:
branches:
- master
schedule:
# Runs every day at 23:15
- cron: '15 23 * * *'
jobs:
build:
name: Building with ${{ matrix.sofa_version }}
runs-on: ubuntu-20.04
container: ${{ matrix.CONTAINER }}
strategy:
fail-fast: false
matrix:
sofa_version: [ master ]
include:
- sofa_version: master
SOFA_VERSION_I: 999999
CONTAINER: jnbrunet/caribou-ubuntu-2004-builder:latest
PYTHON_VERSION: 3.8
PYBIND11_VERSION: 2.6
env:
SOFA_VERSION: ${{ matrix.sofa_version }}
SOFA_ROOT: /opt/sofa
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: |
git config --global user.email "[email protected]"
git config --global user.name "Caribou Github"
git fetch origin
git rebase origin/master
- name: Install pybind11
if: ${{ matrix.PYBIND11_VERSION != '2.4' }}
run: |
git clone --depth 1 -b v${{ matrix.PYBIND11_VERSION }} https://github.com/pybind/pybind11.git /tmp/pybind11
cmake -GNinja -S/tmp/pybind11 -B/tmp/pybind11/build -DPYBIND11_TEST=OFF -DCMAKE_BUILD_TYPE=Release
cmake --install /tmp/pybind11/build
rm -rf /tmp/pybind11
- name: Download SOFA Release
run: |
if [ "$SOFA_VERSION" = "master" ]; then
curl --output sofa.zip -L "https://ci.inria.fr/sofa-ci-dev/job/nightly-generate-binaries/lastStableBuild/CI_BRANCH=master,CI_SCOPE=standard/artifact/Linux/*zip*/Linux.zip"
unzip sofa.zip -d temp
mv temp/Linux/`ls temp/Linux` sofa.zip
rm -rf temp
unzip sofa.zip -d temp
mv temp/`ls temp` $SOFA_ROOT
else
curl --output sofa.zip -L "https://github.com/sofa-framework/sofa/releases/download/$SOFA_VERSION/SOFA_"$SOFA_VERSION"_Linux.zip"
unzip sofa.zip -d temp
mv temp/`ls temp` $SOFA_ROOT
fi
- name: Get Time
id: time
uses: nanzm/[email protected]
with:
timeZone: 8
format: 'YYYY-MM-DD-HH-mm-ss'
- name: ccache cache files
uses: actions/cache@v2
if: ${{ always() }}
with:
path: .ccache
key: ubuntu-ccache-${{ steps.time.outputs.time }}
restore-keys: |
ubuntu-ccache-
- name: Build caribou
env:
CCACHE_COMPRESS: true
CCACHE_COMPRESSLEVEL: 6
CCACHE_MAXSIZE: "500M"
PYTHONEXE: ${{ format('/usr/bin/python{0}', matrix.PYTHON_VERSION) }}
run:
export CCACHE_BASEDIR=$GITHUB_WORKSPACE &&
export CCACHE_DIR=$GITHUB_WORKSPACE/.ccache &&
ccache -z &&
cmake
-GNinja
-DPYTHON_EXECUTABLE=$PYTHONEXE
-DCMAKE_C_COMPILER_LAUNCHER=ccache
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
-DCARIBOU_BUILD_TESTS=ON
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_INSTALL_PREFIX=SofaCaribou
.
&& cmake --build . && cmake --install .
&& tar czvf SofaCaribou.tar.gz SofaCaribou
&& echo ${CCACHE_BASEDIR}
&& ccache -s
- name: Archive production
uses: actions/upload-artifact@v2
with:
name: caribou_${{ matrix.sofa_version }}
path: SofaCaribou.tar.gz
test:
name: Testing with ${{ matrix.sofa_version }}
needs: [build]
runs-on: ubuntu-20.04
container: ubuntu:20.04
strategy:
fail-fast: false
matrix:
sofa_version: [ master ]
include:
- sofa_version: master
PYTHON_VERSION: 3.8
sofa_version_int: 211200
env:
SOFA_VERSION: ${{ matrix.sofa_version }}
SOFA_ROOT: /opt/sofa
CARIBOU_ROOT: /opt/sofa/plugins/SofaCaribou
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.PYTHON_VERSION }}
- name: Install dependencies
run: |
apt-get update
apt-get -qq --no-install-recommends install \
libgl1-mesa-glx libglib2.0-0 libglx0 libopengl0 libharfbuzz0b libgomp1 curl ca-certificates unzip
python -m pip install numpy meshio scipy
- name: Install SOFA
run: |
if [ "$SOFA_VERSION" = "master" ]; then
curl --output sofa.zip -L "https://ci.inria.fr/sofa-ci-dev/job/nightly-generate-binaries/lastStableBuild/CI_BRANCH=master,CI_SCOPE=standard/artifact/Linux/*zip*/Linux.zip"
unzip sofa.zip -d temp
mv temp/Linux/`ls temp/Linux` sofa.zip
rm -rf temp
unzip sofa.zip -d temp
mv temp/`ls temp` $SOFA_ROOT
else
curl --output sofa.zip -L "https://github.com/sofa-framework/sofa/releases/download/$SOFA_VERSION/SOFA_"$SOFA_VERSION"_Linux.zip"
unzip sofa.zip -d temp
mv temp/`ls temp` $SOFA_ROOT
fi
- name: Download caribou
uses: actions/[email protected]
with:
name: caribou_${{ matrix.sofa_version }}
path: /tmp
- name: Unpack caribou
run: tar xzf /tmp/SofaCaribou.tar.gz -C /opt/sofa/plugins
- name: Caribou.unittests.Geometry
if: ${{ always() }}
run: |
export LD_LIBRARY_PATH="$SOFA_ROOT/lib:$LD_LIBRARY_PATH"
$CARIBOU_ROOT/bin/Caribou.unittests.Geometry
- name: Caribou.Geometry.PyTest
if: ${{ always() }}
run: |
export PYTHONPATH=$PYTHONPATH:$CARIBOU_ROOT/lib/python3/site-packages
python $CARIBOU_ROOT/bin/pytest/Caribou_Geometry_Test.py
- name: Caribou.unittests.Topology
if: ${{ always() }}
run: |
[ "$SOFA_VERSION" = "v20.06.01" ] && export LD_LIBRARY_PATH="$SOFA_ROOT/lib:$LD_LIBRARY_PATH"
$CARIBOU_ROOT/bin/Caribou.unittests.Topology
- name: Caribou.Topology.PyTest
if: ${{ always() }}
run: |
export PYTHONPATH=$PYTHONPATH:$CARIBOU_ROOT/lib/python3/site-packages
python $CARIBOU_ROOT/bin/pytest/Caribou_Topology_Test.py
- name: Caribou.unittests.Mechanics
if: ${{ always() }}
run: |
export LD_LIBRARY_PATH="$SOFA_ROOT/lib:$LD_LIBRARY_PATH"
$CARIBOU_ROOT/bin/Caribou.unittests.Mechanics
- name: Caribou.unittests.SofaCaribou
if: ${{ always() }}
run: |
[ "$SOFA_VERSION" = "v20.06.01" ] && export LD_LIBRARY_PATH="$SOFA_ROOT/lib:$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH="$SOFA_ROOT/collections/SofaBaseMechanics/lib:$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH="$SOFA_ROOT/collections/SofaBaseUtils/lib:$LD_LIBRARY_PATH"
$CARIBOU_ROOT/bin/Caribou.unittests.SofaCaribou
- name: SofaCaribou.PyTest
if: ${{ matrix.sofa_version_int >= '201200' }}
run: |
export PYTHONPATH=$PYTHONPATH:$CARIBOU_ROOT/lib/python3/site-packages:$SOFA_ROOT/plugins/SofaPython3/lib/python3/site-packages
python $CARIBOU_ROOT/bin/pytest/SofaCaribou_Forcefield_HyperelasticForcefield.py
deploy:
name: Deploy ${{ matrix.sofa_version }}
needs: [test]
runs-on: ubuntu-20.04
if: github.event_name == 'schedule'
strategy:
matrix:
sofa_version: [ master ]
env:
SOFA_VERSION: ${{ matrix.sofa_version }}
steps:
- name: Download artifact
uses: actions/[email protected]
with:
name: caribou_${{ matrix.sofa_version }}
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y_%m_%d')"
- name: Get SOFA major/minor
id: sofa_version
run: |
if [ "$SOFA_VERSION" = "master" ]; then
echo "::set-output name=value::master"
else
echo "::set-output name=value::${SOFA_VERSION%.*}"
fi
- name: Create artifact directory
uses: appleboy/ssh-action@master
env:
ARTIFACT_TARGET: ${{ format('{0}/linux/{1}', secrets.ARTIFACT_TARGET, steps.sofa_version.outputs.value) }}
with:
host: ${{ secrets.ARTIFACT_HOST }}
username: ${{ secrets.ARTIFACT_USERNAME }}
key: ${{ secrets.ARTIFACT_KEY }}
port: ${{ secrets.ARTIFACT_PORT }}
envs: ARTIFACT_TARGET
script: mkdir -p $ARTIFACT_TARGET
- name: Deploy artifact
uses: appleboy/scp-action@master
with:
host: ${{ secrets.ARTIFACT_HOST }}
username: ${{ secrets.ARTIFACT_USERNAME }}
port: ${{ secrets.ARTIFACT_PORT }}
key: ${{ secrets.ARTIFACT_KEY }}
source: "SofaCaribou.tar.gz"
target: ${{ format('{0}/linux/{1}/SofaCaribou_{2}', secrets.ARTIFACT_TARGET, steps.sofa_version.outputs.value, steps.date.outputs.date) }}
debug: true
- name: Tag as latest
uses: appleboy/ssh-action@master
env:
ARTIFACT_TARGET: ${{ format('{0}/linux/{1}/SofaCaribou_{2}', secrets.ARTIFACT_TARGET, steps.sofa_version.outputs.value, steps.date.outputs.date) }}
ARTIFACT_LATEST: ${{ format('{0}/linux/{1}/SofaCaribou_latest.tar.gz', secrets.ARTIFACT_TARGET, steps.sofa_version.outputs.value) }}
with:
host: ${{ secrets.ARTIFACT_HOST }}
username: ${{ secrets.ARTIFACT_USERNAME }}
key: ${{ secrets.ARTIFACT_KEY }}
port: ${{ secrets.ARTIFACT_PORT }}
envs: ARTIFACT_TARGET,ARTIFACT_LATEST
script: |
mv $ARTIFACT_TARGET/SofaCaribou.tar.gz $ARTIFACT_TARGET.tar.gz
rm -rf $ARTIFACT_TARGET
rm -f $ARTIFACT_LATEST
ln -s $ARTIFACT_TARGET.tar.gz $ARTIFACT_LATEST