forked from microsoft/STL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
104 lines (95 loc) · 3.47 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
# Copyright (c) Microsoft Corporation.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
# Build STL targeting x86, x64, arm, arm64
variables:
tmpDir: 'D:\Temp'
buildOutputLocation: 'D:\build'
benchmarkBuildOutputLocation: 'D:\benchmark'
pool:
name: 'StlBuild-2023-02-21T1058-Pool'
demands: EnableSpotVM -equals true
pr:
drafts: false
stages:
- stage: Code_Format
displayName: 'Code Format'
jobs:
- job: Code_Format_Validation
timeoutInMinutes: 20
displayName: 'Validation'
steps:
- script: |
if exist "$(tmpDir)" (
rmdir /S /Q $(tmpDir)
)
mkdir $(tmpDir)
displayName: 'Setup TMP Directory'
- checkout: self
clean: true
submodules: false
- script: |
cd $(Build.SourcesDirectory)
git clean --quiet -x -d -f -f
displayName: 'Clean after checkout'
- script: |
call "%ProgramFiles%\Microsoft Visual Studio\2022\Preview\Common7\Tools\VsDevCmd.bat" ^
-host_arch=amd64 -arch=amd64 -no_logo
cmake -G Ninja -S $(Build.SourcesDirectory)/tools -B $(tmpDir)/format-validate-build
cmake --build $(tmpDir)/format-validate-build
displayName: 'Build format and validation'
timeoutInMinutes: 5
env: { TMP: $(tmpDir), TEMP: $(tmpDir) }
- script: |
call "%ProgramFiles%\Microsoft Visual Studio\2022\Preview\Common7\Tools\VsDevCmd.bat" ^
-host_arch=amd64 -arch=amd64 -no_logo
cmake --build $(tmpDir)/format-validate-build --target run-format
displayName: 'clang-format Files'
timeoutInMinutes: 5
env: { TMP: $(tmpDir), TEMP: $(tmpDir) }
- script: |
call "%ProgramFiles%\Microsoft Visual Studio\2022\Preview\Common7\Tools\VsDevCmd.bat" ^
-host_arch=amd64 -arch=amd64 -no_logo
cmake --build $(tmpDir)/format-validate-build --target run-validate
displayName: 'Validate Files'
timeoutInMinutes: 2
env: { TMP: $(tmpDir), TEMP: $(tmpDir) }
- task: Powershell@2
displayName: 'Create Diff'
inputs:
filePath: azure-devops/create-prdiff.ps1
pwsh: false
condition: succeededOrFailed()
env: { TMP: $(tmpDir), TEMP: $(tmpDir) }
- stage: Build_And_Test_x64
dependsOn: Code_Format
displayName: 'Build and Test'
jobs:
- template: azure-devops/native-build-test.yml
parameters:
targetPlatform: x64
vsDevCmdArch: amd64
- stage: Build_And_Test_x86
dependsOn: Build_And_Test_x64
displayName: 'Build and Test'
jobs:
- template: azure-devops/native-build-test.yml
parameters:
targetPlatform: x86
vsDevCmdArch: x86
- stage: Build_ARM
dependsOn: Build_And_Test_x64
displayName: 'Build'
jobs:
- template: azure-devops/cross-build.yml
parameters:
targetPlatform: arm
vsDevCmdArch: arm
benchmarkBuildOutputLocationVar: ''
- stage: Build_ARM64
dependsOn: Build_And_Test_x64
displayName: 'Build'
jobs:
- template: azure-devops/cross-build.yml
parameters:
targetPlatform: arm64
vsDevCmdArch: arm64