-
Notifications
You must be signed in to change notification settings - Fork 3
/
azure-pipelines.yml
85 lines (76 loc) · 1.85 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
resources:
repositories:
- repository: self
variables:
MAVEN_CACHE_FOLDER: $(Pipeline.Workspace)/.m2/repository
MAVEN_OPTS: '-Dmaven.repo.local=$(MAVEN_CACHE_FOLDER)'
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
Clang 6.0 Release:
CC: clang
CXX: clang++
BuildType: Release
USE_SANITIZER: none
GENERATOR: "Unix Makefiles"
GCC 5.4 Release:
BuildType: Release
USE_SANITIZER: none
GENERATOR: "Unix Makefiles"
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
- template: build.yml
- job: Windows_VS19
pool:
vmImage: 'windows-2019'
strategy:
matrix:
x86_64 Release:
BuildType: Release
GENERATOR: "Visual Studio 16 2019"
USE_SANITIZER: none
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
- template: build.yml
- job: Windows_VS17
pool:
vmImage: 'vs2017-win2016'
strategy:
matrix:
x86_64 Release:
BuildType: Release
GENERATOR: "Visual Studio 15 2017 Win64"
USE_SANITIZER: none
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
- template: build.yml
- job: MacOS_10_14
pool:
vmImage: 'macOS-10.14'
strategy:
matrix:
Release Xcode 11.0:
BuildType: Release
USE_SANITIZER: none
GENERATOR: "Unix Makefiles"
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
- bash: |
/bin/bash -c "sudo xcode-select -s /Applications/Xcode_11.app/Contents/Developer"
clang --version
displayName: 'Set Xcode11 as default'
failOnStderr: false
- script: |
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off
- template: build.yml