From 8cbc23572314f68c7a97085a35c4cc7e993960d9 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Sun, 16 Sep 2018 17:58:26 +0200 Subject: [PATCH] CI: also use GCC 4.7 and 4.8 * .travis.yml (matrix): here. --- .travis.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.travis.yml b/.travis.yml index f9ed5706..6bfd0adf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,6 +65,28 @@ matrix: env: - MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9" + - name: "GCC 4.8" + os: linux + addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - g++-4.8 + env: + - MATRIX_EVAL="CC=gcc-4.8 && CXX=g++-4.8" + + - name: "GCC 4.7" + os: linux + addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - g++-4.7 + env: + - MATRIX_EVAL="CC=gcc-4.7 && CXX=g++-4.7" + - name: "GCC 4.6" os: linux addons: