From 44e9a4e6cf245432dccf4c8d90b6ac8d2963aaaa Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Mon, 26 Jun 2017 16:18:09 -0400 Subject: [PATCH] travis-ci: switch gcc-7 build to buster, remove from allow_failures gcc 7 is now in debian testing ("buster"), with a proper stable upstream release; this updates the associated travis-ci to use "buster" (rather than "sid"), and removes the build from allow_failures. --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9bc55b831..bdc4d5ad4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -76,8 +76,6 @@ matrix: - make -C docs html SPHINX_OPTIONS=-W - tools/check-style.sh - flake8 - allow_failures: - - env: PYTHON=3.5 CPP=17 GCC=7 cache: directories: - $HOME/.local/bin @@ -98,7 +96,7 @@ before_install: export CXX=g++-$GCC CC=gcc-$GCC fi if [ "$GCC" = "6" ] || [ "$CLANG" = "3.9" ]; then DOCKER=${ARCH:+$ARCH/}debian:stretch - elif [ "$GCC" = "7" ]; then DOCKER=debian:sid + elif [ "$GCC" = "7" ]; then DOCKER=debian:buster fi elif [ "$TRAVIS_OS_NAME" = "osx" ]; then export CXX=clang++ CC=clang;