summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
blob: 1cb5b287618a5337d927dc6a62ab170ed54be6fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# 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'