-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
86 lines (81 loc) · 2.11 KB
/
azure-pipelines.yml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
jobs:
- job: Windows_VS2017
pool:
vmImage: 'vs2017-win2016'
variables:
PROFILE: 'profiles/windows_x86_64_visual_studio_15_2017'
timeoutInMinutes: 0
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
- template: templates/install-conan.yml
- template: templates/setup-conan.yml
- template: templates/build-package.yml
parameters:
packages: ["googletest", "qt", "tbb", "vtk", "vtk_dicom"]
strategy:
matrix:
Release:
BUILD_TYPE: 'Release'
- job: Windows_VS2019
pool:
vmImage: 'windows-2019'
variables:
PROFILE: 'profiles/windows_x86_64_visual_studio_17_2019'
timeoutInMinutes: 0
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
- template: templates/install-conan.yml
- template: templates/setup-conan.yml
- template: templates/build-package.yml
parameters:
packages: ["googletest", "qt", "tbb", "vtk", "vtk_dicom"]
strategy:
matrix:
Release:
BUILD_TYPE: 'Release'
- job: Ubuntu_Linux_18_04
pool:
vmImage: 'ubuntu-18.04'
variables:
PROFILE: 'profiles/ubuntu_x86_64_gcc_7'
timeoutInMinutes: 0
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
- template: templates/install-conan.yml
- script: echo "##vso[task.setvariable variable=PATH]${PATH}:~/.local/bin/"
- template: templates/setup-conan.yml
- template: templates/build-package.yml
parameters:
packages: ["googletest", "qt", "tbb", "vtk", "vtk_dicom"]
strategy:
matrix:
Release:
BUILD_TYPE: 'Release'
- job: macOS_10_14
pool:
vmImage: 'macOS-10.14'
variables:
PROFILE: 'profiles/macos_x86_64_apple_clang_11_0'
timeoutInMinutes: 0
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
- script: |
brew update
brew install conan || brew upgrade conan
- template: templates/install-conan.yml
- template: templates/setup-conan.yml
- template: templates/build-package.yml
parameters:
packages: ["googletest", "qt", "tbb", "vtk", "vtk_dicom"]
strategy:
matrix:
Release:
BUILD_TYPE: 'Release'