-
Notifications
You must be signed in to change notification settings - Fork 10
92 lines (73 loc) · 2.83 KB
/
linux-ci.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
name: Linux CI
on: [pull_request]
jobs:
build:
name: ${{ matrix.name }} ${{ matrix.build_type }}
runs-on: ${{ matrix.os }}
env:
CTEST_OUTPUT_ON_FAILURE: ON
CTEST_PARALLEL_LEVEL: 2
CMAKE_BUILD_TYPE: ${{ matrix.build_type }}
strategy:
fail-fast: false
matrix:
# Github Actions requires a single row to be added to the build matrix.
# See https://help.github.com/en/articles/workflow-syntax-for-github-actions.
name: [ubuntu-20.04-gcc-9, ubuntu-20.04-clang-10]
build_type: [Debug, Release]
include:
- name: ubuntu-20.04-gcc-9
os: ubuntu-20.04
compiler: gcc
version: "9"
- name: ubuntu-20.04-clang-10
os: ubuntu-20.04
compiler: clang
version: "10"
steps:
- name: Setup Compiler
run: |
sudo apt-get -y clean && sudo apt-get -y update
if [ "${{ matrix.compiler }}" = "gcc" ]; then
sudo apt-get install -y g++-${{ matrix.version }} g++-${{ matrix.version }}-multilib
echo "CC=gcc-${{ matrix.version }}" >> $GITHUB_ENV
echo "CXX=g++-${{ matrix.version }}" >> $GITHUB_ENV
else
sudo apt-get install -y clang-${{ matrix.version }} g++-multilib
echo "CC=clang-${{ matrix.version }}" >> $GITHUB_ENV
echo "CXX=clang++-${{ matrix.version }}" >> $GITHUB_ENV
fi
- name: Install Dependencies
run: |
# For SDFormat
sudo sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-stable.list'
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D2486D2DD83DB69272AFE98867170598AF249743
sudo apt-get -y update
sudo apt-get -y install libtbb-dev libboost-all-dev libsdformat12-dev
# Install CppUnitLite.
git clone https://github.com/borglab/CppUnitLite.git
cd CppUnitLite && mkdir build && cd $_
cmake .. && sudo make -j4 install
cd ../../
- name: GTSAM
run: |
sudo add-apt-repository -y ppa:borglab/gtsam-develop
sudo apt-get -y update
sudo apt-get -y install libgtsam-no-tbb-dev libgtsam-no-tbb-unstable-dev
- name: Checkout
uses: actions/checkout@master
- name: Build Directory
run: mkdir build
- name: Configure
run: |
cmake -DGTDYNAMICS_BUILD_PYTHON=OFF -DGTSAM_BUILD_WITH_MARCH_NATIVE=OFF ..
working-directory: ./build
- name: Build
run: make -j$(nproc)
working-directory: ./build
- name: Test
run: make -j$(nproc) check
working-directory: ./build
- name: Install
run: sudo make -j$(nproc) install
working-directory: ./build