-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
76c29f3
commit 1beacc3
Showing
3 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ compiler: | |
before_install: | ||
- if [ ! `git config --get user.email` ]; then `git config --global user.email '[email protected]'`; fi | ||
- if [ ! `git config --get user.name` ]; then `git config --global user.name 'Travis CI'`; fi | ||
- '[[ "$TRAVIS_EVENT_TYPE" = cron ]] && export YARP_CHECKOUT=devel || export YARP_CHECKOUT=master' | ||
- '[[ "$TRAVIS_EVENT_TYPE" = cron ]] && export ROBOTOLOGY_CHECKOUT=devel || export ROBOTOLOGY_CHECKOUT=master' | ||
|
||
install: | ||
# Install color-debug | ||
|
@@ -23,8 +23,15 @@ install: | |
- cd ../.. | ||
#-- Install googletest | ||
- sudo apt-get install libgtest-dev | ||
#-- Install YCM | ||
- git clone --branch="$ROBOTOLOGY_CHECKOUT" https://github.com/robotology/ycm | ||
- cd ycm && mkdir build && cd build | ||
- cmake .. | ||
- make -j$(nproc) | ||
- sudo make install | ||
- cd ../.. | ||
#-- Install yarp | ||
- git clone --branch="$YARP_CHECKOUT" https://github.com/robotology/yarp | ||
- git clone --branch="$ROBOTOLOGY_CHECKOUT" https://github.com/robotology/yarp | ||
- cd yarp && mkdir build && cd build | ||
- cmake .. -DSKIP_ACE=ON | ||
- make | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters