summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-05-24 17:59:47 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-05-24 17:59:47 +0200
commit21ddbbfdcda0e972430c860e3e7dffac7eb1e667 (patch)
tree53df06f0895170e7dea577ee04e085c701c25404 /azure-pipelines.yml
parent0028c61573281eae84b743c8e59e5aa5c5b0fe5f (diff)
Remove Azure as appveyor works
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml66
1 files changed, 0 insertions, 66 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
deleted file mode 100644
index 1cb5b287..00000000
--- a/azure-pipelines.yml
+++ /dev/null
@@ -1,66 +0,0 @@
-# Starter pipeline
-# Start with a minimal pipeline that you can customize to build and deploy your code.
-# Add steps that build, run tests, deploy, and more:
-# https://aka.ms/yaml
-
-trigger:
-- master
-
-pool:
- vmImage: 'vs2017-win2016'
-
-strategy:
- maxParallel: 4
- matrix:
- Examples:
- cmakeExample: ON
- cmakeTest: OFF
- cmakeUtil: OFF
- cmakePython: OFF
- Unitary-tests:
- cmakeExample: OFF
- cmakeTest: ON
- cmakeUtil: OFF
- cmakePython: OFF
- Utilities:
- cmakeExample: OFF
- cmakeTest: OFF
- cmakeUtil: ON
- cmakePython: OFF
- Python-module:
- cmakeExample: OFF
- cmakeTest: OFF
- cmakeUtil: OFF
- cmakePython: ON
-
-workspace:
- clean: all
-
-steps:
-- script: 'vcpkg install eigen3:x64-windows'
- displayName: vcpkg install dependencies
-
-- task: UsePythonVersion@0
- inputs:
- versionSpec: '3.6'
- architecture: 'x64'
-
-- script: python -m pip install --upgrade pip setuptools numpy matplotlib scipy Cython pytest sphinx sphinxcontrib-bibtex
- displayName: 'Install tools'
-
-- task: CMake@1
- displayName: 'CMake solution GUDHIdev.sln'
- inputs:
- workingDirectory: 'build'
- cmakeArgs: '.. -G "Visual Studio 15 2017 Win64" -DCMAKE_TOOLCHAIN_FILE="C:\vcpkg\scripts\buildsystems\vcpkg.cmake" -DWITH_GUDHI_EXAMPLE=$(cmakeExample) -DWITH_GUDHI_TEST=$(cmakeTest) -DWITH_GUDHI_UTILITIES=$(cmakeUtil) -DWITH_GUDHI_PYTHON=$(cmakePython)'
-
-- task: MSBuild@1
- displayName: 'Build solution GUDHIdev.sln'
- inputs:
- workingDirectory: 'build'
- solution: 'build/GUDHIdev.sln'
- msbuildArguments: '/m /p:Configuration=Release /p:Platform=x64'
-
-- script: ctest -j 1 -C Release -V
- workingDirectory: build
- displayName: 'CTest solution GUDHIdev.sln'