summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index c092a4491..6d322e457 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,6 +18,12 @@ branches:
- /^stable.*/
- /^travis.*/
+before_install:
+ - $CC --version
+ - which $CC
+ # workaround clang not system wide, fail on sudo make install
+ - export CC=`which $CC`
+
install:
- source ./.travis-functions.sh
- travis_install_script
@@ -31,8 +37,3 @@ script:
after_script:
- travis_after_script
-before_install:
- - $CC --version
- - which $CC
- # workaround clang not system wide, fail on sudo make install
- - export CC=`which $CC`