From 80ccb85026de7b90354e19902934b7e5f6def274 Mon Sep 17 00:00:00 2001 From: "tlepoix@localhost" Date: Fri, 17 Apr 2020 17:43:25 +0200 Subject: [PATCH] travis : rm BUILD_TYPE --- .travis.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6218d9d..50c60fe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,19 +7,11 @@ matrix: - os: linux compiler: g++ addons: - env: BUILD_SYSTEM=cmake BUILD_TYPE=Debug - - os: linux - compiler: g++ - addons: - env: BUILD_SYSTEM=cmake BUILD_TYPE=Release - - os: linux - compiler: clang++ - addons: - env: BUILD_SYSTEM=cmake BUILD_TYPE=Debug + env: BUILD_SYSTEM=cmake - os: linux compiler: clang++ addons: - env: BUILD_SYSTEM=cmake BUILD_TYPE=Release + env: BUILD_SYSTEM=cmake - os: linux compiler: g++ addons: @@ -42,7 +34,7 @@ script: - echo CXXFLAGS=${CXXFLAGS} - mkdir build && cd build - if [[ "${BUILD_SYSTEM}" == "cmake" ]] ; then - cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} .. ; + cmake .. ; elif [[ "${BUILD_SYSTEM}" == "qmake" ]] ; then qmake .. ; fi