Skip to content

Commit

Permalink
USE_GTEST
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Nov 6, 2014
1 parent d0ef566 commit 1d57184
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ install:
# lcov
- if [ "${USE_COVERAGE}" = 'lcov' ]; then sudo apt-get install lcov rubygems; fi
- if [ "${USE_COVERAGE}" = 'lcov' ]; then gem install lcoveralls; fi
# gtest
- if [ "${USE_GTEST}" = '1' ]; then sudo apt-get -qq install cmake; fi
- if [ "${USE_GTEST}" = '1' ]; then sudo apt-get -qq install libgtest-dev; fi
- if [ "${USE_GTEST}" = '1' ]; then cd /usr/src/gtest && sudo cmake . && sudo cmake --build . && sudo mv libg* /usr/local/lib/; cd -; fi

script:
- cd ./test
Expand Down Expand Up @@ -61,6 +65,8 @@ matrix:
env: USE_FUSE=fuse_min
- compiler: gcc
env: USE_FUSE=fuse_min STDFLAG=-std=c++98
- compiler: gcc
env: USE_GTEST=1
- compiler: gcc
env: COVERITY_SCAN=1
addons:
Expand Down

0 comments on commit 1d57184

Please sign in to comment.