forked from microsoft/STL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
186 lines (165 loc) · 5.32 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# Copyright (c) Microsoft Corporation.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
# Build STL targeting x86, x64, arm, arm64
variables:
tmpDir: 'D:\Temp'
pool: 'StlBuild-2020-10-23'
stages:
- stage: Code_Format
displayName: 'Code Format'
jobs:
- job: Code_Format_Validation
timeoutInMinutes: 90
displayName: 'Validation'
variables:
buildOutputLocation: 'D:\tools'
steps:
- script: |
if exist "$(tmpDir)" (
rmdir /S /Q $(tmpDir)
)
mkdir $(tmpDir)
displayName: 'Setup TMP Directory'
- checkout: self
clean: true
submodules: false
- script: |
if exist "$(buildOutputLocation)" (
rmdir /S /Q "$(buildOutputLocation)"
)
call "%PROGRAMFILES(X86)%\Microsoft Visual Studio\2019\Preview\Common7\Tools\VsDevCmd.bat" ^
-host_arch=amd64 -arch=amd64 -no_logo
cmake -G Ninja -DCMAKE_CXX_COMPILER=cl -DCMAKE_BUILD_TYPE=Release ^
-S $(Build.SourcesDirectory)\tools -B $(buildOutputLocation)
cmake --build $(buildOutputLocation)
displayName: 'Build Support Tools'
env: { TMP: $(tmpDir), TEMP: $(tmpDir) }
- task: BatchScript@1
displayName: 'Enforce clang-format'
timeoutInMinutes: 60
condition: succeededOrFailed()
inputs:
filename: 'azure-devops/enforce-clang-format.cmd'
failOnStandardError: true
arguments: '$(buildOutputLocation)/parallelize/parallelize.exe'
env: { TMP: $(tmpDir), TEMP: $(tmpDir) }
- task: BatchScript@1
displayName: 'Validate Files'
timeoutInMinutes: 2
condition: succeededOrFailed()
inputs:
filename: 'azure-devops/validate-files.cmd'
failOnStandardError: true
arguments: '$(buildOutputLocation)/validate/validate.exe'
env: { TMP: $(tmpDir), TEMP: $(tmpDir) }
- stage: Build_And_Test
displayName: 'Build and Test'
jobs:
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x86
vsDevCmdArch: x86
numShards: 8
shardNum: 1
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x86
vsDevCmdArch: x86
numShards: 8
shardNum: 2
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x86
vsDevCmdArch: x86
numShards: 8
shardNum: 3
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x86
vsDevCmdArch: x86
numShards: 8
shardNum: 4
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x86
vsDevCmdArch: x86
numShards: 8
shardNum: 5
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x86
vsDevCmdArch: x86
numShards: 8
shardNum: 6
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x86
vsDevCmdArch: x86
numShards: 8
shardNum: 7
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x86
vsDevCmdArch: x86
numShards: 8
shardNum: 8
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x64
vsDevCmdArch: amd64
numShards: 8
shardNum: 1
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x64
vsDevCmdArch: amd64
numShards: 8
shardNum: 2
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x64
vsDevCmdArch: amd64
numShards: 8
shardNum: 3
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x64
vsDevCmdArch: amd64
numShards: 8
shardNum: 4
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x64
vsDevCmdArch: amd64
numShards: 8
shardNum: 5
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x64
vsDevCmdArch: amd64
numShards: 8
shardNum: 6
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x64
vsDevCmdArch: amd64
numShards: 8
shardNum: 7
- template: azure-devops/run-build.yml
parameters:
targetPlatform: x64
vsDevCmdArch: amd64
numShards: 8
shardNum: 8
- template: azure-devops/run-build.yml
parameters:
targetPlatform: arm
vsDevCmdArch: arm
numShards: 1
shardNum: 1
- template: azure-devops/run-build.yml
parameters:
targetPlatform: arm64
vsDevCmdArch: arm64
numShards: 1
shardNum: 1