aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-03-26 00:26:29 +0100
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-03-26 01:12:16 +0100
commitfd2b09329b4f6e7865d874b29a2469461b46ae67 (patch)
tree56aeb2b450236cd645722585dd583c28c4091231 /.travis.yml
parentf865a6bae9c01e992f19728ec635361f948becb6 (diff)
Adding a simple 'buildonly' test.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index e43a89e453..165f8923c0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,9 +19,12 @@ env:
- CONFIG=opt TEST=python
- CONFIG=gcov TEST=c
- CONFIG=gcov TEST=c++
+ - USE_GCC=4.4 CONFIG=opt TEST=build
+ - USE_GCC=4.5 CONFIG=opt TEST=build
script:
- rvm use $RUBY_VERSION
- gem install bundler
+ - if [ ! -z "$USE_GCC" ] ; then export CC=gcc-$USE_GCC ; export CXX=g++-$USE_GCC ; fi
- ./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