Skip to content

Commit

Permalink
Configure non-interactive builds, drop git config
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterBowman authored Apr 18, 2019
1 parent 8027f1a commit d2333fe
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,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

#-- Register SSH deploy key for AMOR API private repository
- source "$TRAVIS_BUILD_DIR/scripts/travis/configure-ssh.sh"

Expand All @@ -49,7 +45,7 @@ install:

before_script:
- mkdir build && cd "$_"
- cmake .. -DCMAKE_INSTALL_PREFIX="$PWD/install-system" -DYCM_GIT_GITHUB_BASE_ADDRESS="[email protected]:"
- cmake .. -DCMAKE_INSTALL_PREFIX="$PWD/install-system" -DNON_INTERACTIVE_BUILD=ON -DYCM_GIT_GITHUB_BASE_ADDRESS="[email protected]:"

script:
- make install
Expand Down

0 comments on commit d2333fe

Please sign in to comment.