travis: update to GCC 8

Closes https://github.com/curl/curl/pull/2869
This commit is contained in:
Marcel Raad 2018-08-09 14:48:28 +02:00
parent 8440616f53
commit b852071995
No known key found for this signature in database
GPG Key ID: 33C416EFAE4D6F02
1 changed files with 7 additions and 7 deletions

View File

@ -20,14 +20,14 @@ addons:
- llvm-toolchain-trusty-6.0
packages:
- cmake
- gcc-7
- gcc-8
- lcov
- clang-6.0
- valgrind
- libev-dev
- libc-ares-dev
- g++-7
- libstdc++-7-dev
- g++-8
- libstdc++-8-dev
- stunnel4
- libidn2-0-dev
- libssh2-1-dev
@ -135,7 +135,7 @@ install:
- if [ $TRAVIS_OS_NAME = linux ]; then
curl -L https://github.com/nghttp2/nghttp2/releases/download/v1.24.0/nghttp2-1.24.0.tar.gz |
tar xzf - &&
(cd nghttp2-1.24.0 && CXX="g++-7" ./configure --prefix=/usr --disable-threads --enable-app && make && sudo make install);
(cd nghttp2-1.24.0 && CXX="g++-8" ./configure --prefix=/usr --disable-threads --enable-app && make && sudo make install);
fi
before_script:
@ -230,15 +230,15 @@ script:
- |
set -eo pipefail
if [ "$T" = "coverage" ]; then
export CC="gcc-7"
export CC="gcc-8"
./configure --enable-debug --disable-shared --enable-code-coverage
make
make TFLAGS=-n test-nonflaky
make "TFLAGS=-n -e" test-nonflaky
tests="1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 200 201 202 300 301 302 500 501 502 503 504 506 507 508 509 510 511 512 513 514 515 516 517 518 519 600 601 700 701 702 800 801 802 803 900 901 902 903 1000 1001 1002 1004 1100 1101 1200 1201 1302 1303 1304 1305 1306 1308 1400 1401 1402 1404 1450 1451 1452 1502 1507 1508 1600 1602 1603 1605 1700 1701 1702 2001 3000"
make "TFLAGS=-n -t $tests" test-nonflaky
coveralls --gcov /usr/bin/gcov-7 --gcov-options '\-lp' -i src -e lib -e tests -e docs -b $PWD/src
coveralls --gcov /usr/bin/gcov-7 --gcov-options '\-lp' -e src -i lib -e tests -e docs -b $PWD/lib
coveralls --gcov /usr/bin/gcov-8 --gcov-options '\-lp' -i src -e lib -e tests -e docs -b $PWD/src
coveralls --gcov /usr/bin/gcov-8 --gcov-options '\-lp' -e src -i lib -e tests -e docs -b $PWD/lib
fi
- |
set -eo pipefail