From 8df8d20f81dc64bb286f5d1a1d629d050949893d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 3 May 2020 23:14:55 +0200 Subject: [PATCH] tests: replace compiler by different env lines (Travis CI) --- .travis.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 20f239e5a..71c05c3ec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,16 +2,16 @@ dist: bionic sudo: required language: c -compiler: - - gcc - - clang - env: - - BUILDTOOL="cmake" BUILDARGS="" - - BUILDTOOL="cmake" BUILDARGS="-DENABLE_PYTHON2=ON" - - BUILDTOOL="cmake" BUILDARGS="-DENABLE_CODE_COVERAGE=ON" CODECOVERAGE="1" - - BUILDTOOL="autotools" BUILDARGS="" - - BUILDTOOL="autotools" BUILDARGS="--enable-python2" + - CC="gcc" CXX="g++" BUILDTOOL="cmake" BUILDARGS="" + - CC="gcc" CXX="g++" BUILDTOOL="cmake" BUILDARGS="-DENABLE_PYTHON2=ON" + - CC="gcc" CXX="g++" BUILDTOOL="cmake" BUILDARGS="-DENABLE_CODE_COVERAGE=ON" CODECOVERAGE="1" + - CC="gcc" CXX="g++" BUILDTOOL="autotools" BUILDARGS="" + - CC="gcc" CXX="g++" BUILDTOOL="autotools" BUILDARGS="--enable-python2" + - CC="clang" CXX="clang++" BUILDTOOL="cmake" BUILDARGS="" + - CC="clang" CXX="clang++" BUILDTOOL="cmake" BUILDARGS="-DENABLE_PYTHON2=ON" + - CC="clang" CXX="clang++" BUILDTOOL="autotools" BUILDARGS="" + - CC="clang" CXX="clang++" BUILDTOOL="autotools" BUILDARGS="--enable-python2" matrix: fast_finish: true