From: Ruediger Meier Date: Thu, 17 Dec 2015 13:04:57 +0000 (+0100) Subject: travis: cosmetics, order scripts like they are executed X-Git-Tag: v2.28-rc1~219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d42ecea2e9503619e50b58225728e3ef0401125d;p=thirdparty%2Futil-linux.git travis: cosmetics, order scripts like they are executed Signed-off-by: Ruediger Meier --- diff --git a/.travis.yml b/.travis.yml index c092a4491e..6d322e4576 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`