-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
azure-pipelines.yml
143 lines (113 loc) · 3.38 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
trigger:
- main
- dev/*
- rel/*
pr:
- main
- dev/*
- rel/*
pool:
vmImage: windows-2019
variables:
BuildConfiguration: Release
jobs:
### BUILD ###
- job: BuildBits
timeoutInMinutes: 60
steps:
- task: BatchScript@1
inputs:
filename: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\\Common7\\Tools\\VsDevCmd.bat"
arguments: -no_logo
modifyEnvironment: true
displayName: Setup Environment Variables
- task: NuGetToolInstaller@0
displayName: Use NuGet 5.11.x
inputs:
versionSpec: 5.11.x
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install --tool-path . nbgv
displayName: Install NBGV tool
- script: nbgv cloud
displayName: Set Version
#- powershell: .\build\Install-WindowsSdkISO.ps1 19041
# displayName: Insider SDK
- powershell: .\build\build.ps1 -Target Build
displayName: Build
### Unit Tests ###
- powershell: .\build\build.ps1 -Target Test
displayName: Test
- task: PublishTestResults@2
inputs:
testResultsFormat: 'VSTest'
testResultsFiles: '**/VsTestResults*.trx'
displayName: Publish Test Results
condition: always()
### UI Integration Tests ###
- powershell: .\build\build.ps1 -Target UITest
displayName: UI Integration Tests
- task: PublishPipelineArtifact@1
displayName: Publish UI Test Results
inputs:
targetPath: .\build\UITestResults.wtl
artifactName: WexUITestLogFileOutput
condition: always()
- task: PublishPipelineArtifact@1
displayName: Publish Test WexLogFileOutput
inputs:
targetPath: .\build\WexLogFileOutput
artifactName: WexUnitTestErrorLogFileOutput
condition: failed()
### Package ###
- powershell: .\build\build.ps1 -Target Package
displayName: Package
- task: PowerShell@2
displayName: Authenticode Sign Packages
inputs:
filePath: build/Sign-Package.ps1
env:
SignClientUser: $(SignClientUser)
SignClientSecret: $(SignClientSecret)
ArtifactDirectory: bin\nupkg
condition: and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')), not(eq(variables['SignClientSecret'], '')), not(eq(variables['SignClientUser'], '')))
- task: PublishPipelineArtifact@1
displayName: Publish Package Artifacts
inputs:
targetPath: .\bin\nupkg
artifactName: Packages
### Smoke Tests ###
- job: SmokeTests
dependsOn: BuildBits
timeoutInMinutes: 60
steps:
- task: DownloadPipelineArtifact@2
displayName: Download NuGet Packages Artifact
inputs:
artifact: Packages
path: .\bin\nupkg
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install --tool-path . nbgv
displayName: Install NBGV tool
- script: nbgv cloud
displayName: Set Version
- powershell: .\build\build.ps1 -Target SmokeTest
displayName: SmokeTest
- task: CopyFiles@2
inputs:
sourceFolder: .\SmokeTests\AppPackages
contents: '**\*.msixbundle'
targetFolder: $(build.artifactstagingdirectory)\SmokeTestBundles
- task: PublishBuildArtifacts@1
displayName: Publish Smoke Test Artifacts
inputs:
pathToPublish: $(build.artifactstagingdirectory)\SmokeTestBundles
artifactType: container
artifactName: SmokeTestBundles
- powershell: .\SmokeTests\SmokeTestAnalysis.ps1
displayName: Analyze Package Sizes