forked from ompl/omplapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (42 loc) · 890 Bytes
/
.travis.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
language: cpp
matrix:
include:
- os: linux
dist: bionic
compiler: gcc
addons:
apt:
packages:
- freeglut3-dev
- libassimp-dev
- libboost-filesystem-dev
- libboost-program-options-dev
- libboost-serialization-dev
- libboost-system-dev
- libboost-test-dev
- libccd-dev
- libeigen3-dev
- libfcl-dev
- libflann-dev
- libode-dev
- ninja-build
- os: osx
osx_image: xcode10.3
compiler: clang
addons:
homebrew:
packages:
- assimp
- eigen
- fcl
- flann
- ninja
update: true
script:
# get OMPL subrepository
- git clone --depth=1 --branch=master git://github.com/ompl/ompl.git
- mkdir -p build
- cd build
- cmake -G Ninja -DOMPL_REGISTRATION=OFF ..
- cmake --build .
- ctest