-
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
Showing
1 changed file
with
7 additions
and
2 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,21 +1,26 @@ | ||
language: cpp | ||
before_install: | ||
- sudo add-apt-repository ppa:yjwong/gflags -y | ||
- sudo add-apt-repository ppa:h-rayflood/llvm -y | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -qq libgtest-dev libgflags-dev python-virtualenv | ||
- sudo apt-get install -qq libgtest-dev libgflags-dev python-virtualenv clang-3.5 | ||
env: | ||
global: | ||
- RUBY_VERSION=2.1 | ||
matrix: | ||
- CONFIG=dbg TEST=c | ||
- CONFIG=dbg TEST=c++ | ||
- CONFIG=asan TEST=c | ||
- CONFIG=asan TEST=c++ | ||
- CONFIG=tsan TEST=c | ||
- CONFIG=tsan TEST=c++ | ||
- CONFIG=opt TEST=c | ||
- CONFIG=opt TEST=c++ | ||
- CONFIG=opt TEST=node | ||
- CONFIG=opt TEST=ruby | ||
script: | ||
- rvm use $RUBY_VERSION | ||
- gem install bundler | ||
- ./tools/run_tests/run_tests.py -l $TEST -t -j 16 -c $CONFIG -s 2.0 | ||
- ./tools/run_tests/run_tests.py -l $TEST -t -j 16 -c $CONFIG -s 4.0 | ||
notifications: | ||
email: false |