forked from IEEEVSS/FIRASim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (44 loc) · 853 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
45
46
47
48
language: cpp
compiler:
- gcc
# by default Ubuntu Precise is included
# this results on 3 build configurations:
# Ubuntu Precise and Trusty + Latest OSX image
matrix:
include:
- os: linux
dist: trusty
sudo: required
- os: linux
dist: bionic
sudo: required
- os: linux
dist: xenial
sudo: required
- os: osx
osx_image: xcode11
addons:
apt:
packages:
- cmake
- qt5-default
- libqt5opengl5-dev
- libgl1-mesa-dev
- libglu1-mesa-dev
- libprotobuf-dev
- protobuf-compiler
- libode-dev
- libboost-dev
homebrew:
taps: robotology/formulae
packages:
- qt5
- protobuf
- robotology/formulae/ode
script:
# grsim
- cd $TRAVIS_BUILD_DIR
- mkdir build && cd build
- cmake ..
- make
- sudo make install