Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2017-07-29 05:40:08 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2017-07-29 05:40:08 +0300
commit4bff3906fbd221511ae2666e5db2778fbb0c6857 (patch)
treecd8f4e91559a3700b92df37bdb887adeb8873aaa /.travis.yml
parent597d0d4d7d5e2b167771b9efaabb91b4234a415e (diff)
Travis to use GCC 7 from now on
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 93688ea9..28b9bed0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,7 @@
+dist: trusty
language: cpp
compiler:
- - g++-6
+ - g++-7
- clang-4.0
sudo: false
os:
@@ -20,7 +21,7 @@ addons:
- george-edison55-precise-backports
- llvm-toolchain-trusty-4.0
packages:
- - g++-6
+ - g++-7
- clang-4.0
- python3
- cmake
@@ -34,7 +35,7 @@ env:
matrix:
exclude:
# - os: osx
-# compiler: g++-6
+# compiler: g++-7
- os: linux
compiler: clang-4.0
env: __="Documentation" NAME=TravisDocumentation
@@ -70,7 +71,7 @@ before_install:
script:
-
if [ "$__" = "cmake tests" ]; then
- if [ "$CXX" = "g++" ]; then export CXX=g++-6; export NAME=TravisLinuxWorkerGCC; fi;
+ if [ "$CXX" = "g++" ]; then export CXX=g++-7; export NAME=TravisLinuxWorkerGCC; fi;
if [ "$CXX" = "clang++" ]; then export CXX=clang++-4.0; export NAME=TravisLinuxWorkerClang; fi;
ctest -S .ci.cmake -V;
fi
@@ -82,7 +83,7 @@ script:
cd doc/html;
git checkout gh-pages;
cd ../..;
- CXX=g++-6 ctest -S .docs.cmake -V;
+ CXX=g++-7 ctest -S .docs.cmake -V;
cd doc/html;
git add . || true;
git commit -a -m "Travis CI updates documentation" || true;