-
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.
Configure non-interactive builds, drop git config
- Loading branch information
1 parent
2caa41a
commit 48788cb
Showing
1 changed file
with
1 addition
and
6 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 |
---|---|---|
|
@@ -24,18 +24,13 @@ addons: | |
# ROBOTICSLAB | ||
- libspnav-dev | ||
|
||
before_install: | ||
#-- Configure Git (needed by YCM) | ||
- 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 | ||
|
||
install: | ||
#-- Install ROBOTICSLAB deps | ||
- sudo apt-get install libxwiimote-dev | ||
|
||
before_script: | ||
- mkdir build && cd "$_" | ||
- cmake .. -DCMAKE_INSTALL_PREFIX="$PWD/install-system" | ||
- cmake .. -DCMAKE_INSTALL_PREFIX="$PWD/install-system" -DNON_INTERACTIVE_BUILD=ON | ||
|
||
script: | ||
- make install | ||
|