-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
56 lines (52 loc) · 1.04 KB
/
.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
49
50
51
52
53
54
55
56
language: cpp
compiler:
- gcc
# by default Ubuntu Precise is included
# this results on 3 build configurations:
# Ubuntu Precise and Trusty + Latest OSX image
matrix:
- os: linux
dist: bionic
sudo: required
#- os: linux
# dist: xenial
# sudo: required
addons:
apt:
packages:
- cmake
- qt5-default
- libqt5opengl5-dev
- libgl1-mesa-dev
- libglu1-mesa-dev
- libprotobuf-dev
- protobuf-compiler
- libode-dev
- libboost-dev
- omniorb
- omniidl
- omniorb-nameserver
- libomniorb4-dev
- build-essential
- g++
homebrew:
taps: robotology/formulae
packages:
- qt5
- protobuf
- robotology/formulae/ode
install:
#GEARSystem
- git clone https://github.com/maracatronics/GEARSystem.git
- cd GEARSystem && cd trunk
- sh build/corba_skeletons.sh
- qmake install_path=/usr/lib/
- make -j4
- sudo sh install.sh
script:
# Suassuna
- cd $TRAVIS_BUILD_DIR
- mkdir build
- cd build
- qmake ..
- make -j8