summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2018-08-15 08:58:20 +0200
committerStefan Behnel <stefan_ml@behnel.de>2018-08-15 08:58:20 +0200
commita7fec3e394d49937414b50b3d9d67c3d8f633ad8 (patch)
tree16c8503fb8004bf6023e3e909c7057312b77a20c /.travis.yml
parentd279612b9eba1bb12be207a6a197ae9a62793ec7 (diff)
downloadcython-a7fec3e394d49937414b50b3d9d67c3d8f633ad8.tar.gz
See that ccache is actually being used by travis.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 501e18f91..8770a4380 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -118,8 +118,8 @@ before_install:
for i in {1..10}; do sudo apt-get update && sudo apt-get install --yes gcc-8 $(if [ "$BACKEND" = cpp ]; then echo -n "g++-8"; fi ) && break; sleep 2; done
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60 $(if [ "$BACKEND" = cpp ]; then echo " --slave /usr/bin/g++ g++ /usr/bin/g++-8"; fi)
sudo update-alternatives --set gcc /usr/bin/gcc-8
- export CC=gcc-8
- if [ "$BACKEND" = cpp ]; then sudo update-alternatives --set g++ /usr/bin/g++-8; export CXX=g++-8; fi
+ export CC=gcc
+ if [ "$BACKEND" = cpp ]; then sudo update-alternatives --set g++ /usr/bin/g++-8; export CXX=g++; fi
fi
- |
@@ -134,8 +134,8 @@ before_install:
fi
fi
- - if [ -n "$CC" ]; then $CC --version; fi
- - if [ -n "$CXX" ]; then $CXX --version; fi
+ - if [ -n "$CC" ]; then which $CC; $CC --version; fi
+ - if [ -n "$CXX" ]; then which $CXX; $CXX --version; fi
- if [[ "$STACKLESS" == "true" ]]; then
conda config --add channels stackless;