From 9533c352a1352d17a1eac72e699c70d1c28e6ef5 Mon Sep 17 00:00:00 2001 From: Syoyo Fujita Date: Thu, 31 Oct 2019 01:02:43 +0900 Subject: [PATCH] Add gcc-4.8 build on Travis. --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.travis.yml b/.travis.yml index 87e777a..38a6584 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,6 +31,17 @@ matrix: - addons: *1 compiler: clang env: COMPILER_VERSION=3.9 BUILD_TYPE=Debug CFLAGS="-O0" CXXFLAGS="-O0" + - addons: &3 + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - g++-4.8 + compiler: gcc + env: COMPILER_VERSION=4.8 BUILD_TYPE=Debug + - addons: *1 + compiler: gcc + env: COMPILER_VERSION=4.8 BUILD_TYPE=Release before_install: - ./.travis-before-install.sh