From: Yann Collet Date: Wed, 8 Aug 2018 17:26:54 +0000 (-0700) Subject: try adding gcc-8 compilation tests X-Git-Tag: v0.0.29~49^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23ab7875e14a7340f81e63d4e47401d3bc2f712c;p=thirdparty%2Fzstd.git try adding gcc-8 compilation tests --- diff --git a/.travis.yml b/.travis.yml index a3b514c8e..257de66e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,7 @@ matrix: - env: Cmd='make gcc6install libc6install && make clean && CC=gcc-6 make -j uasan-test-zstd32' - env: Cmd='make gcc7install && make clean && CC=gcc-7 make -j uasan-test-zstd' + - env: Cmd='make gcc8install && CC=gcc-8 CFLAGS=-Werror make -j all' - env: Cmd='make clang38install && CC=clang-3.8 make clean msan-test-zstd' - env: Cmd='make gcc6install && CC=gcc-6 make clean uasan-fuzztest' diff --git a/Makefile b/Makefile index 98c35a346..f67791275 100644 --- a/Makefile +++ b/Makefile @@ -287,6 +287,9 @@ gcc6install: apt-add-repo gcc7install: apt-add-repo APT_PACKAGES="libc6-dev-i386 gcc-multilib gcc-7 gcc-7-multilib" $(MAKE) apt-install +gcc8install: apt-add-repo + APT_PACKAGES="libc6-dev-i386 gcc-multilib gcc-8 gcc-8-multilib" $(MAKE) apt-install + gpp6install: apt-add-repo APT_PACKAGES="libc6-dev-i386 g++-multilib gcc-6 g++-6 g++-6-multilib" $(MAKE) apt-install