aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.travis-ci.sh2
-rw-r--r--.travis.yml12
2 files changed, 9 insertions, 5 deletions
diff --git a/.travis-ci.sh b/.travis-ci.sh
index b3e0744..ddfa93d 100644
--- a/.travis-ci.sh
+++ b/.travis-ci.sh
@@ -74,6 +74,6 @@ elif [[ $TASK = 'sanitize' ]]; then
else
# Otherwise compile as normal
travis_fold start "make"
- make;
+ make full;
travis_fold end "make"
fi
diff --git a/.travis.yml b/.travis.yml
index 1b7c2e2..ab047ce 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,9 +19,11 @@ addons:
- *base_build
- libasound2-dev
- libevdev-dev
+ - libola-dev
packages: &core_build_gpp_latest
- *core_build
- gcc-8
+ - g++-8
packages: &core_build_clang_latest
- *core_build
- clang-6.0
@@ -156,14 +158,16 @@ install:
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache; fi
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache ola; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then PATH=/usr/local/opt/ccache/libexec:$PATH; fi # Use ccache on Mac too
#Coverity doesn't work with g++ 5 or 6, so only upgrade to g++ 4.9 for that
- - if [ "$TRAVIS_OS_NAME" == "linux" -a \( "$TASK" = "compile" -o "$TASK" = "sanitize" \) -a "$CC" = "gcc" ]; then export CC="ccache gcc-8"; fi
+ - if [ "$TRAVIS_OS_NAME" == "linux" -a \( "$TASK" = "compile" -o "$TASK" = "sanitize" \) -a "$CC" = "gcc" ]; then export CC="ccache gcc-8"; export CXX="ccache g++-8"; fi
#Use the latest clang if we're compiling with clang
- - if [ "$TRAVIS_OS_NAME" == "linux" -a "$CC" = "clang" ]; then export CC="clang-6.0"; fi
-#Report the compiler version
+ - if [ "$TRAVIS_OS_NAME" == "linux" -a "$CC" = "clang" ]; then export CC="clang-6.0"; export CXX="clang-6.0"; fi
+#Report the compiler versions
- $CC --version
+#OS X uses something other than $CXX variable
+ - if [ "$TRAVIS_OS_NAME" == "linux" -a \( "$TASK" = "compile" -o "$TASK" = "sanitize" \) ]; then $CXX --version; fi
- if [ "$TASK" == "spellintian" -o "$TASK" == "spellintian-duplicates" ]; then wget "http://archive.ubuntu.com/ubuntu/pool/main/l/lintian/lintian_2.5.104_all.deb"; sudo dpkg -i lintian_*.deb; sudo apt-get install -f -y; fi # Install a later lintian
after_script: