aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-03-24 23:26:32 +0100
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-03-25 00:25:17 +0100
commit882d7a7eec148046a90e1d111b93e353e3df0c31 (patch)
tree098d5ce90a5a440f7c9f9d5b94b842b3a99739ca /.travis.yml
parentdad14be4eb359326a11253196f035c8f36fbdc86 (diff)
Adding pre-built packages for OpenSSL and protobuf for Travis.
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