aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index e43a89e453..d6d67d415c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,6 +9,9 @@ env:
global:
- RUBY_VERSION=2.1
- COVERALLS_PARALLEL=true
+ - CPPFLAGS=-I/tmp/prebuilt/include
+ - LDFLAGS=-L/tmp/prebuilt/lib
+ - PATH=/tmp/prebuilt/bin:$PATH
matrix:
- CONFIG=dbg TEST=c
- CONFIG=dbg TEST=c++
@@ -22,6 +25,7 @@ env:
script:
- rvm use $RUBY_VERSION
- gem install bundler
+ - ./tools/run_tests/prepare_travis.sh
- ./tools/run_tests/run_tests.py -l $TEST -t -j 16 -c $CONFIG -s 4.0
after_success:
- if [ "$CONFIG" = "gcov" ] ; then coveralls --exclude third_party --exclude gens -b. --gcov-options '\-p' ; fi