-
Notifications
You must be signed in to change notification settings - Fork 1
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
e74227c
commit 0ff5e31
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
language: cpp | ||
dist: trusty | ||
sudo: required | ||
os: linux | ||
|
||
compiler: | ||
|
@@ -27,10 +26,6 @@ addons: | |
- 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 | ||
|
||
#-- Add source repository for PCL-related packages | ||
- sudo add-apt-repository --yes ppa:v-launchpad-jochen-sprickerhof-de/pcl | ||
- sudo apt-get -qq update | ||
|
@@ -44,7 +39,7 @@ install: | |
|
||
before_script: | ||
- mkdir -p build && cd "$_" | ||
- cmake .. -DCMAKE_INSTALL_PREFIX="$PWD/install-system" | ||
- cmake .. -DCMAKE_INSTALL_PREFIX="$PWD/install-system" -DNON_INTERACTIVE_BUILD=ON | ||
|
||
script: | ||
- make install | ||
|