From 32bfcbd398c899d02865482b52b360b63e3ad167 Mon Sep 17 00:00:00 2001 From: terik23 Date: Sat, 28 Apr 2018 00:50:44 +0500 Subject: [PATCH] update ci --- .appveyor.yml | 8 +------- .travis.yml | 6 ++++++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index add3736..52c4eed 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -13,27 +13,21 @@ configuration: shallow_clone: true matrix: - fast_finish: false + fast_finish: true environment: matrix: - TOOLCHAIN: msvc14 - TOOLCHAIN: msvc15 -init: - - ps: 'Write-Host "Building branch: $env:APPVEYOR_REPO_BRANCH" -ForegroundColor Magenta' - before_build: - - ps: 'Write-Host "Running CMake:" -ForegroundColor Magenta' - if exist build RMDIR /S /Q build - if not exist build mkdir build - cd build - cmake.exe .. %CMAKE_CONFIGURE_FLAGS% build_script: - - ps: 'Write-Host "Running build:" -ForegroundColor Magenta' - cmake --build . --config %CONFIGURATION% test_script: - - ps: 'Write-Host "Running tests:" -ForegroundColor Magenta' - ctest -V --output-on-failure -C %CONFIGURATION% diff --git a/.travis.yml b/.travis.yml index b864c61..7fde7e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,12 @@ sudo: required language: cpp +git: + depth: 1 + +matrix: + fast_finish: true + os: - linux - osx