From 4fa2614c30a531bcb8c35f00c9f9ffca649d0e4e Mon Sep 17 00:00:00 2001 From: Neargye Date: Fri, 25 May 2018 19:07:50 +0500 Subject: [PATCH] update ci --- .appveyor.yml | 1 + .travis.yml | 118 ++++++++++++++++++++++++++++++++++++++++++++++---- 2 files changed, 111 insertions(+), 8 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index d0e37fd..859bd78 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -8,6 +8,7 @@ platform: configuration: - Debug + - Release shallow_clone: true diff --git a/.travis.yml b/.travis.yml index aaa37c9..98d7644 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +os: linux dist: trusty sudo: required @@ -59,6 +60,65 @@ matrix: env: - CXX_COMPILER=g++-7 CC_COMPILER=gcc-7 CONFIGURATION=Debug + - os: linux + compiler: g++ + addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - g++-8 + env: + - CXX_COMPILER=g++-8 CC_COMPILER=gcc-8 CONFIGURATION=Debug + + - os: linux + compiler: clang++ + addons: + apt: + sources: + - ubuntu-toolchain-r-test + - llvm-toolchain-precise-3.6 + packages: + - clang-3.6 + env: + - CXX_COMPILER=clang++-3.6 CC_COMPILER=clang-3.6 CONFIGURATION=Debug + + - os: linux + compiler: clang++ + addons: + apt: + sources: + - ubuntu-toolchain-r-test + - llvm-toolchain-precise-3.7 + packages: + - clang-3.7 + env: + - CXX_COMPILER=clang++-3.7 CC_COMPILER=clang-3.7 CONFIGURATION=Debug + + - os: linux + compiler: clang++ + addons: + apt: + sources: + - ubuntu-toolchain-r-test + - llvm-toolchain-precise-3.8 + packages: + - clang-3.8 + env: + - CXX_COMPILER=clang++-3.8 CC_COMPILER=clang-3.8 CONFIGURATION=Debug + + - os: linux + compiler: clang++ + addons: + apt: + sources: + - ubuntu-toolchain-r-test + - llvm-toolchain-trusty-3.9 + packages: + - clang-3.9 + env: + - CXX_COMPILER=clang++-3.9 CC_COMPILER=clang-3.9 CONFIGURATION=Debug + - os: linux compiler: clang++ addons: @@ -95,6 +155,48 @@ matrix: env: - CXX_COMPILER=clang++-6.0 CC_COMPILER=clang-6.0 CONFIGURATION=Debug + - os: osx + compiler: clang++ + osx_image: xcode7.0 + env: + - CONFIGURATION=Debug + + - os: osx + compiler: clang++ + osx_image: xcode7.1 + env: + - CONFIGURATION=Debug + + - os: osx + compiler: clang++ + osx_image: xcode7.2 + env: + - CONFIGURATION=Debug + + - os: osx + compiler: clang++ + osx_image: xcode7.3 + env: + - CONFIGURATION=Debug + + - os: osx + compiler: clang++ + osx_image: xcode8.0 + env: + - CONFIGURATION=Debug + + - os: osx + compiler: clang++ + osx_image: xcode8.1 + env: + - CONFIGURATION=Debug + + - os: osx + compiler: clang++ + osx_image: xcode8.2 + env: + - CONFIGURATION=Debug + - os: osx compiler: clang++ osx_image: xcode8.3 @@ -126,19 +228,19 @@ matrix: - CONFIGURATION=Debug install: - - | - if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then - export CXX=${CXX_COMPILER} - export CC=${CC_COMPILER} - fi + - export CC=${CC_COMPILER} + - export CXX=${CXX_COMPILER} + - JOBS=2 # Travis machines have 2 cores. -script: +before_script: - rm -rf build - mkdir -p build - cd build - cmake .. -DCMAKE_BUILD_TYPE=${CONFIGURATION} - - cmake --build . --config ${CONFIGURATION} - - ctest -V --output-on-failure -С ${CONFIGURATION} + +script: + - cmake --build . --config ${CONFIGURATION} -- -j${JOBS} + - ctest -V --output-on-failure -С ${CONFIGURATION} -j${JOBS} notifications: email: false