forked from robotology/karma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
60 lines (48 loc) · 1.27 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
57
58
59
60
sudo: required
dist: trusty
language: cpp
compiler:
- gcc
branches:
only:
- master
- devel
- integrate-planner
install:
- sudo sh -c 'echo "deb http://www.icub.org/ubuntu trusty contrib/science" > /etc/apt/sources.list.d/icub.list'
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 57A5ACB6110576A6
- sudo apt-get --quiet --yes update
- sudo apt-get --quiet --yes install icub-common libeigen3-dev
- cd ..
- git clone https://github.com/robotology/yarp.git
- cd yarp
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release -DCREATE_LIB_MATH=TRUE ..
- sudo make install
- cd ../../
- git clone https://github.com/robotology/icub-main.git
- cd icub-main
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_icubmod_cartesiancontrollerclient=TRUE -DENABLE_icubmod_cartesiancontrollerserver=TRUE -DENABLE_icubmod_gazecontrollerclient=TRUE ..
- sudo make install
- cd ../../
- git clone https://github.com/robotology/icub-contrib-common.git
- cd icub-contrib-common
- mkdir build
- cd build
- cmake ..
- sudo make install
- cd ../../
- cd karmaWYSIWYD
before_script:
- mkdir build
- cd build
- cmake ..
script:
- make
notifications:
email:
- phuong.nguyen@iit.it
- ph17dn@gmail.com