summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
blob: c9c25b7c1a6dff5d4ca0575863b2f5d958f5d163 (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
# 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: 2
  matrix:
    x64-Release:
      buildPlatform: x64
      buildConfiguration: Release
    x64-Debug:
      buildPlatform: x64
      buildConfiguration: Debug

workspace:
  clean: all

steps:

- task: CMake@1
  displayName: 'CMake'
  inputs:
    workingDirectory: 'build'
    cmakeArgs: '.. -G "Visual Studio 15 2017 Win64"'

- task: MSBuild@1
  displayName: 'Build solution GUDHIdev.sln'
  inputs:
    workingDirectory: 'build'
    solution: 'build/GUDHIdev.sln'
    msbuildArguments: '/m /p:Configuration=$(buildConfiguration) /p:Platform=$(buildPlatform)'

- script: 'ctest -j 1 --interactive-debug-mode 0 --output-on-failure -C $(buildConfiguration) -R "in_memory"'
  workingDirectory: 'build'
  displayName: 'Run Ctest'