-
Notifications
You must be signed in to change notification settings - Fork 7
389 lines (324 loc) · 10.6 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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# name: Build and Test RAPTOR
# on:
# push:
# branches:
# - unit_test_dev
# paths-ignore:
# # Compiled Object files and Libraries
# - '*.d'
# - '*.slo'
# - '*.lo'
# - '*.o'
# - '*.obj'
# - '*.gch'
# - '*.pch'
# - '*.so'
# - '*.dylib'
# - '*.dll'
# - '*.mod'
# - '*.smod'
# - '*.lai'
# - '*.la'
# - '*.a'
# - '*.lib'
# # Executables
# - '*.exe'
# - '*.out'
# - '*.app'
# # Matlab related
# - '*.asv'
# - '*.mat'
# - '.vscode/**'
# - 'build/**'
# - 'data/**'
# - 'data_safecopy/**'
# - 'Examples/Kinova/SystemIdentification/ExcitingTrajectories/data/**'
# - 'test_oracle.py'
# # - 'docker/HSL.zip'
# # - 'docker/pardiso/**'
# # - 'HSL/**'
# - 'Examples/Digit/singlestep_optimization_settings.yaml'
# - 'Examples/Digit-modified/singlestep_optimization_settings.yaml'
# - 'test_nanobind_planner.py'
# pull_request:
# branches:
# - unit_test_dev
# paths-ignore:
# # Same patterns as for push events
# - '*.d'
# - '*.slo'
# - '*.lo'
# - '*.o'
# - '*.obj'
# - '*.gch'
# - '*.pch'
# - '*.so'
# - '*.dylib'
# - '*.dll'
# - '*.mod'
# - '*.smod'
# - '*.lai'
# - '*.la'
# - '*.a'
# - '*.lib'
# # Executables
# - '*.exe'
# - '*.out'
# - '*.app'
# # Matlab related
# - '*.asv'
# - '*.mat'
# - '.vscode/**'
# - 'build/**'
# - 'data/**'
# - 'data_safecopy/**'
# - 'Examples/Kinova/SystemIdentification/ExcitingTrajectories/data/**'
# - 'test_oracle.py'
# # - 'docker/HSL.zip'
# # - 'docker/pardiso/**'
# # - 'HSL/**'
# - 'Examples/Digit/singlestep_optimization_settings.yaml'
# - 'Examples/Digit-modified/singlestep_optimization_settings.yaml'
# - 'test_nanobind_planner.py'
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true
# jobs:
# build:
# # runs-on: ubuntu-latest
# # container:
# # image: zichang1234/raptor:latest
# runs-on: ubuntu-22.04
# # not sure
# env:
# CCACHE_BASEDIR: ${{ github.workspace }}
# CCACHE_DIR: ${{ github.workspace }}/.ccache
# CCACHE_COMPRESS: true
# CCACHE_COMPRESSLEVEL: 5
# steps:
# - name: Free disk space (initial cleanup)
# run: |
# sudo apt-get clean
# sudo rm -rf /usr/share/dotnet /etc/mysql /etc/php /var/lib/mysql /var/lib/php /opt/ghc
# df -h
# # - name: Setup Container
# # run: |
# # apt update && DEBIAN_FRONTEND="noninteractive" apt install -y sudo lsb-release gnupg2 cmake git python3
# - name: Checkout Repository
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# submodules: recursive
# - name: Setup ccache
# uses: actions/cache@v4
# with:
# path: .ccache
# # save-state: true
# key: ccache-linux-${{ matrix.container }}-${{ github.sha }}
# restore-keys: |
# ccache-linux-${{ matrix.container }}-
# - name: Get branch name (merge)
# if: github.event_name != 'pull_request'
# shell: bash
# run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
# - name: Get branch name (push)
# if: github.event_name != 'pull_request'
# shell: bash
# run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
# - name: Get branch name (pull request)
# if: github.event_name == 'pull_request'
# shell: bash
# run: echo "BRANCH_NAME=$(echo ${GITHUB_HEAD_REF})" >> $GITHUB_ENV
# - name: Debug Branch Name
# run: echo ${{ env.BRANCH_NAME }}
# - name: Install APT Dependencies
# run: |
# sudo apt-get update && sudo apt-get install -y \
# build-essential \
# cmake \
# gdb \
# valgrind \
# libboost-all-dev \
# libeigen3-dev \
# libgsl-dev \
# git \
# unzip \
# patch \
# wget \
# pkg-config \
# liblapack-dev \
# libmetis-dev \
# python3.10 \
# python3-pip \
# iputils-ping \
# net-tools \
# netcat \
# screen \
# lsb-release \
# gnupg2 \
# curl \
# libyaml-cpp-dev \
# xvfb
# - name: Free disk space
# run: |
# sudo apt clean
# df -h
# - name: Install Python Packages
# run: |
# pip3 install --upgrade pip
# pip3 install scipy matplotlib pyyaml torch pybullet==3.2.5 mujoco==2.3.7 glfw==2.6.2 pyopengl==3.1.7 numpy==1.25.2 nanobind pygccxml pyplusplus
# - name: Free disk space
# run: |
# sudo apt clean
# df -h
# - name: Install Pinocchio Dependencies
# run: |
# bash docker/scripts/install-pinocchio.sh
# - name: Free disk space
# run: |
# sudo apt clean
# df -h
# - name: Install HSL Solver
# run: |
# bash docker/scripts/install-hsl.sh
# - name: Free disk space
# run: |
# sudo apt clean
# df -h
# - name: Install Ipopt Solver
# run: |
# bash docker/scripts/install-ipopt.sh
# - name: Free disk space
# run: |
# sudo apt clean
# df -h
# - name: Install OMPL
# run: |
# bash docker/scripts/install-ompl.sh
# - name: Free disk space
# run: |
# sudo apt clean
# df -h
# - name: Configure CMake
# run: |
# # Add cloned repo to safe.directory, since it was not cloned by the container
# git config --global --add safe.directory "$GITHUB_WORKSPACE"
# git submodule update --init
# export PATH=$PATH:/opt/openrobots/bin
# export PYTHON3_DOT_VERSION=$(python3 -c "import sys; print(str(sys.version_info.major)+'.'+str(sys.version_info.minor))")
# export PYTHONPATH=${PYTHONPATH}:/opt/openrobots/lib/python$PYTHON3_DOT_VERSION/site-packages
# export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/openrobots/lib:/usr/local/lib:/usr/lib:/usr/lib/x86_64-linux-gnu
# mkdir build
# cd build
# cmake .. \
# -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
# -DCMAKE_BUILD_TYPE=Release \
# -DBUILD_WITH_COLLISION_SUPPORT=ON \
# -DBUILD_ADVANCED_TESTING=OFF \
# -DBUILD_WITH_CASADI_SUPPORT=ON \
# -DPYTHON_EXECUTABLE=$(which python3) \
# -DBUILD_WITH_OPENMP_SUPPORT=ON \
# -DINSTALL_DOCUMENTATION=ON \
# -DCMAKE_TOOLCHAIN_FILE=${GITHUB_WORKSPACE}/.github/workflows/cmake/linux-debug-toolchain.cmake
# - name: Build Project
# run: |
# cd build
# make -j$(nproc)
# # may overlap
# # - name: Build Tests
# # run: |
# # cd build
# # make -j$(nproc) build_tests
# - name: Run Tests
# env:
# CTEST_OUTPUT_ON_FAILURE: 1
# run: |
# cd build
# ctest --output-on-failure
# - name: Upload Build Artifacts
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: build-artifacts
# path: build/
# - name: Run Tests
# env:
# CTEST_OUTPUT_ON_FAILURE: 1
# run: |
# cd build
# mkdir -p TestResults
# ctest --output-on-failure --output-junit TestResults/test-results.xml
# - name: Upload Test Results
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: test-results
# path: build/TestResults/test-results.xml
# - name: Upload Test Results to Test Reporter
# if: always()
# uses: dorny/test-reporter@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# name: CTest Results
# path: build/TestResults/test-results.xml
# reporter: junit
# - name: Test Packaging
# run: |
# export PATH=$PATH:/opt/openrobots/bin
# export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/opt/openrobots/lib/pkgconfig
# export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/openrobots/lib:/usr/local/lib:/usr/lib:/usr/lib/x86_64-linux-gnu
# # Test CMake module packaging
# cd ./unittest/packaging/cmake
# mkdir build && cd build
# export CMAKE_PREFIX_PATH=/usr/local
# cmake .. \
# -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
# -DPYTHON_EXECUTABLE=$(which python3)
# make -j$(nproc)
# ./run_rnea
# ./load_urdf
# # Test pkg-config packaging
# cd ../../pkgconfig
# mkdir build && cd build
# cmake .. \
# -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
# -DPYTHON_EXECUTABLE=$(which python3)
# make -j$(nproc)
# ./run_rnea
# ./load_urdf
# # Test FetchContent packaging
# cd ../../external
# export PINOCCHIO_GIT_REPOSITORY="file://$GITHUB_WORKSPACE"
# export PINOCCHIO_GIT_TAG="test-external-$(git rev-parse --short HEAD)"
# git tag $PINOCCHIO_GIT_TAG
# mkdir build && cd build
# cmake .. \
# -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
# -DPYTHON_EXECUTABLE=$(which python3)
# make -j$(nproc)
# ./run_rnea
# ./load_urdf
# # Test CMake module packaging and pinocchio_header target
# cd ../../pinocchio_header
# mkdir build && cd build
# cmake .. \
# -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
# -DPYTHON_EXECUTABLE=$(which python3)
# make -j$(nproc)
# ./run_fk
# - name: Uninstall Project
# run: |
# cd build
# sudo make uninstall
# check:
# if: always()
# name: check-linux-apt
# needs:
# - build
# runs-on: ubuntu-latest
# steps:
# - name: Decide whether the needed jobs succeeded or failed
# uses: re-actors/alls-green@release/v1
# with:
# jobs: ${{ toJSON(needs) }}