commit 84d89fe613684856ab417b9d0ce2488242c1a497 parent c7cd3a9bcc73a10bbe0ba767d7bb6e0804ef8821 Author: [email protected] <[email protected]> Date: Tue, 13 Nov 2018 21:38:37 +0300 Azure pipelines Diffstat:
D | .travis.yml | | | 61 | ------------------------------------------------------------- |
A | azure-pipelines.yml | | | 67 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
2 files changed, 67 insertions(+), 61 deletions(-)
diff --git a/.travis.yml b/.travis.yml @@ -1,61 +0,0 @@ -language: cpp -matrix: - include: - - os: linux - compiler: clang - sudo: required - dist: trusty - addons: - apt: - sources: - - ubuntu-toolchain-r-test - - llvm-toolchain-precise-3.8 - packages: - - g++-5 - - clang-3.8 - - libmpfr-dev - env: - - TEST=LINUX-X86-64 CMAKEARGS="-DCMAKE_CXX_COMPILER=clang++-3.8 -DCMAKE_BUILD_TYPE=Release .." - - os: linux - compiler: clang - sudo: required - dist: trusty - addons: - apt: - sources: - - ubuntu-toolchain-r-test - - llvm-toolchain-precise-3.8 - packages: - - clang-3.8 - - qemu - - g++-arm-linux-gnueabihf - env: - - TEST=LINUX-ARMV7 CMAKEARGS="-DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=../cmake/arm.cmake -DARCH_FLAGS=-DLIBC_WORKAROUND_GETS=1 .." - - os: osx - osx_image: xcode8 - env: - - TEST=XCODE8 CMAKEARGS="-DCMAKE_BUILD_TYPE=Release .." - - os: osx - osx_image: xcode9.1 - env: - - TEST=XCODE9.1 CMAKEARGS="-DCMAKE_BUILD_TYPE=Release .." - - os: osx - osx_image: xcode9.4 - env: - - TEST=XCODE9.4 CMAKEARGS="-DCMAKE_BUILD_TYPE=Release .." - - os: osx - osx_image: xcode10 - env: - - TEST=XCODE10.0 CMAKEARGS="-DCMAKE_BUILD_TYPE=Release .." - -before_install: - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cmake --version || brew install cmake; fi - - cmake --version - -script: - - mkdir build - - cd build - - cmake $CMAKEARGS - - make -j4 - - cd tests - - ctest -V diff --git a/azure-pipelines.yml b/azure-pipelines.yml @@ -0,0 +1,67 @@ +jobs: +- job: Linux + pool: + vmImage: 'ubuntu-16.04' + steps: + - bash: | + sudo apt-get install -y ninja-build libmpfr-dev + mkdir build + cd build + cmake -GNinja -DCMAKE_BUILD_TYPE=Release .. + ninja + cd tests + ctest -V + +- job: Linux_ARM + pool: + vmImage: 'ubuntu-16.04' + steps: + - bash: | + sudo apt-get install -y ninja-build g++-arm-linux-gnueabihf qemu + mkdir build + cd build + cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=../cmake/arm.cmake -DARCH_FLAGS=-DLIBC_WORKAROUND_GETS=1 .. + ninja + cd tests + ctest -V + +- job: macOS + strategy: + matrix: + xcode10.1: + XCODE_VER: 10.1 + xcode10: + XCODE_VER: 10 + xcode9.4.1: + XCODE_VER: 9.4.1 + xcode9.0.1: + XCODE_VER: 9.0.1 + xcode8.3.3: + XCODE_VER: 8.3.3 + pool: + vmImage: 'macOS-10.13' + steps: + - bash: | + /bin/bash -c "sudo xcode-select -s /Applications/Xcode_$(XCODE_VER).app/Contents/Developer" + brew install ninja + mkdir build + cd build + cmake -GNinja -DCMAKE_BUILD_TYPE=Release .. + ninja + cd tests + ctest -V + +- job: Windows_MinGW + pool: + vmImage: 'vs2017-win2016' + steps: + - bash: | + choco install llvm ninja + mkdir build + cd build + cmake -GNinja -DCMAKE_CXX_COMPILER="C:/Program Files/LLVM/bin/clang++.exe" -DCMAKE_BUILD_TYPE=Release .. + ninja + cd tests + ctest -V + +