forked from Azure/Bridge-To-Kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-pipelines-PR.yml
366 lines (364 loc) · 13.2 KB
/
build-pipelines-PR.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# This pipeline is meant to run build validation for PRs. This pipeline does not have signing.
# 'Allow scripts to access the OAuth token' was selected in pipeline. Add the following YAML to any steps requiring access:
# env:
# MY_ACCESS_TOKEN: $(System.AccessToken)
# Variable 'ArtifactServices.Symbol.AccountName' was defined in the Variables tab
# Variable 'ArtifactServices.Symbol.PAT' was defined in the Variables tab
# Variable 'ArtifactServices.Symbol.UseAAD' was defined in the Variables tab
# Variable 'DropRoot' was defined in the Variables tab
# Variable 'ForceProductionBuild' was defined in the Variables tab
# Variable 'ForceStagingBuild' was defined in the Variables tab
# Variable 'MSI_BuildVersion' was defined in the Variables tab
# Variable 'RunTests' was defined in the Variables tab
# Variable 'skipComponentGovernanceDetection' was defined in the Variables tab
# Variable 'system.prefergit' was defined in the Variables tab
parameters:
- name: BuildConfiguration
displayName: BuildConfiguration to be used
default: 'Release'
values:
- Release
- Debug
variables:
- name: BuildParameters.dotnetversion
value: 7.0.x
- name: BuildParameters.dotnetversionforbuild
value: net7.0
- name: BuildParameters.nugetversion
value: 5.9.x
- name: RunTests
value: True
trigger: none
name: $(date:yyyyMMdd)$(rev:.r)
resources:
repositories:
- repository: self
type: git
ref: refs/heads/main
jobs:
- job: Phase_1
displayName: Run self-contained build (binaries V1, where the binaries are all bundled together)
timeoutInMinutes: 120
cancelTimeoutInMinutes: 1
pool:
name: 'VSEngSS-MicroBuild2022-1ES'
demands:
- msbuild
- visualstudio
- DotNetFramework
steps:
- checkout: self
clean: true
fetchTags: false
persistCredentials: True
- task: UseDotNet@2
displayName: Use .NET Core SDK 7.0.x
enabled: True
inputs:
version: $(BuildParameters.dotnetversion)
installationPath: $(Agent.TempDirectory)/dotnet
- task: DotNetCoreCLI@2
displayName: restore EndpointManager (Windows) (to download runtime pack)
enabled: True
inputs:
command: restore
projects: src\endpointmanager\endpointmanager.csproj
restoreArguments: -r win-x64
selectOrConfig: config
nugetConfigPath: src/nuget.config
externalEndpoints: dba0ba50-2d4e-4f12-9f5a-42a638da803b
- task: DotNetCoreCLI@2
displayName: restore EndpointManager for arm64 (Windows) (to download runtime pack)
enabled: True
inputs:
command: restore
projects: src\endpointmanager\endpointmanager.csproj
restoreArguments: -r win-arm64
selectOrConfig: config
nugetConfigPath: src/nuget.config
externalEndpoints: dba0ba50-2d4e-4f12-9f5a-42a638da803b
- task: NuGetToolInstaller@1
name: ''
displayName: Use NuGet 5.9.x
enabled: True
inputs:
versionSpec: $(BuildParameters.nugetversion)
- task: NuGetCommand@2
name: ''
displayName: NuGet restore client.sln
enabled: True
inputs:
solution: src/client.sln
selectOrConfig: config
feedRestore: fc5819b5-ed1c-4a51-9766-a55ddb558d72
nugetConfigPath: src/nuget.config
verbosityRestore: Normal
searchPatternPush: $(Build.ArtifactStagingDirectory)/*.nupkg
- task: VSBuild@1
name: ''
displayName: Build client.sln for Loc and Tests
condition: and(succeeded(), eq(variables.RunTests, 'true'))
enabled: True
inputs:
solution: src/client.sln
msbuildArgs: -p:Localize=true -p:ConsumeEndpointManager=false
configuration: ${{ parameters.BuildConfiguration }}
- task: CredScan@3
inputs:
outputFormat: 'pre'
- task: VSTest@2
displayName: Run Unit Tests
condition: and(succeeded(), eq(variables.RunTests, 'true'))
enabled: True
inputs:
testAssemblyVer2: '**\bin\${{ parameters.BuildConfiguration }}\*\*Tests.dll'
runSettingsFile: tests/unittests/dotnetcore.runsettings
runInParallel: true
codeCoverageEnabled: True
testRunTitle: Unit Tests
failOnMinTestsNotRun: true
rerunFailedTests: true
- task: DotNetCoreCLI@2
displayName: publish DSC for self contained (Windows)
enabled: True
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r win-x64 --no-restore --self-contained true --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
selectOrConfig: config
- task: DotNetCoreCLI@2
displayName: publish DSC for self contained for arm64 (Windows)
enabled: True
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r win-arm64 --no-restore --self-contained true --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
selectOrConfig: config
- task: DotNetCoreCLI@2
displayName: publish EndpointManagerLauncher(Windows)
enabled: True
inputs:
command: publish
publishWebProjects: false
projects: src\EndpointManagerLauncher\endpointmanagerlauncher.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r win-x64 --no-restore --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
selectOrConfig: config
- task: DotNetCoreCLI@2
displayName: publish EndpointManagerLauncher for arm64 (Windows)
enabled: True
inputs:
command: publish
publishWebProjects: false
projects: src\EndpointManagerLauncher\endpointmanagerlauncher.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r win-arm64 --no-restore --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
selectOrConfig: config
- task: DotNetCoreCLI@2
displayName: publish DSC for self contained (OSX)
enabled: True
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r osx-x64 --no-restore --self-contained true --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
selectOrConfig: config
- task: DotNetCoreCLI@2
displayName: publish DSC for self contained for arm64 (OSX)
enabled: True
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r osx-arm64 --no-restore --self-contained true --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
selectOrConfig: config
- task: DotNetCoreCLI@2
displayName: publish DSC for self contained (Linux)
enabled: True
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r linux-x64 --no-restore --self-contained true --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
selectOrConfig: config
- task: DotNetCoreCLI@2
displayName: publish DSC for self contained for arm64 (Linux)
enabled: True
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r linux-arm64 --no-restore --self-contained true --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
selectOrConfig: config
- task: DotNetCoreCLI@2
displayName: 'dotnet pack CLI NuGet (Windows)'
inputs:
command: pack
feedsToUse: config
packagesToPack: src/dsc/dsc.csproj
packDirectory: '$(Build.ArtifactStagingDirectory)/nuget'
nobuild: true
buildProperties: 'NuspecFile=bin\${{ parameters.BuildConfiguration }}\$(BuildParameters.dotnetversionforbuild)\win-x64\publish\dsc.nuspec'
- task: DotNetCoreCLI@2
displayName: 'dotnet pack CLI NuGet for arm64 (Windows)'
inputs:
command: pack
feedsToUse: config
packagesToPack: src/dsc/dsc.csproj
packDirectory: '$(Build.ArtifactStagingDirectory)/nuget'
nobuild: true
buildProperties: 'NuspecFile=bin\${{ parameters.BuildConfiguration }}\$(BuildParameters.dotnetversionforbuild)\win-arm64\publish\dsc.nuspec'
- job: Phase_2
displayName: Run NON self-contained build (binaries V2, where the binaries are downloaded in parallel)
timeoutInMinutes: 120
cancelTimeoutInMinutes: 1
pool:
name: 'VSEngSS-MicroBuild2022-1ES'
demands:
- msbuild
- visualstudio
- DotNetFramework
steps:
- checkout: self
clean: true
fetchTags: false
persistCredentials: True
- task: UseDotNet@2
displayName: Use .NET Core SDK 7.0.x
enabled: True
inputs:
version: $(BuildParameters.dotnetversion)
installationPath: $(Agent.TempDirectory)/dotnet
- task: DotNetCoreCLI@2
displayName: restore EndpointManager (Windows) (to download runtime pack)
enabled: True
inputs:
command: restore
projects: src\endpointmanager\endpointmanager.csproj
restoreArguments: -r win-x64
selectOrConfig: config
nugetConfigPath: src/nuget.config
externalEndpoints: dba0ba50-2d4e-4f12-9f5a-42a638da803b
- task: DotNetCoreCLI@2
displayName: restore EndpointManager for arm64 (Windows) (to download runtime pack)
enabled: True
inputs:
command: restore
projects: src\endpointmanager\endpointmanager.csproj
restoreArguments: -r win-arm64
selectOrConfig: config
nugetConfigPath: src/nuget.config
externalEndpoints: dba0ba50-2d4e-4f12-9f5a-42a638da803b
- task: NuGetToolInstaller@1
name: ''
displayName: Use NuGet 5.9.x
enabled: True
inputs:
versionSpec: $(BuildParameters.nugetversion)
- task: NuGetCommand@2
name: ''
displayName: NuGet restore client.sln
enabled: True
inputs:
solution: src/client.sln
selectOrConfig: config
feedRestore: fc5819b5-ed1c-4a51-9766-a55ddb558d72
nugetConfigPath: src/nuget.config
verbosityRestore: Normal
searchPatternPush: $(Build.ArtifactStagingDirectory)/*.nupkg
- task: CredScan@3
inputs:
outputFormat: 'pre'
- task: DotNetCoreCLI@2
displayName: publish EndpointManagerLauncher(Windows)
enabled: True
inputs:
command: publish
publishWebProjects: false
projects: src\EndpointManagerLauncher\endpointmanagerlauncher.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r win-x64 --no-restore --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
selectOrConfig: config
- task: DotNetCoreCLI@2
displayName: publish EndpointManagerLauncher for arm64 (Windows)
enabled: True
inputs:
command: publish
publishWebProjects: false
projects: src\EndpointManagerLauncher\endpointmanagerlauncher.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r win-arm64 --no-restore --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
selectOrConfig: config
- task: DotNetCoreCLI@2
displayName: publish DSC for non self contained (Windows)
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r win-x64 --self-contained false --no-restore --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
- task: DotNetCoreCLI@2
displayName: publish DSC for non self contained for arm64 (Windows)
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r win-arm64 --self-contained false --no-restore --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
- task: DotNetCoreCLI@2
displayName: publish DSC for non self contained (Linux)
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r linux-x64 --no-restore --self-contained false --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
- task: DotNetCoreCLI@2
displayName: publish DSC for non self contained for arm64 (Linux)
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r linux-arm64 --no-restore --self-contained false --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
- task: DotNetCoreCLI@2
displayName: publish DSC for non self contained (OSX)
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r osx-x64 --no-restore --self-contained false --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
- task: DotNetCoreCLI@2
displayName: publish DSC for non self contained for arm64 (OSX)
inputs:
command: publish
publishWebProjects: false
projects: src\dsc\dsc.csproj
arguments: -c ${{ parameters.BuildConfiguration }} -r osx-arm64 --no-restore --self-contained false --verbosity detailed
zipAfterPublish: false
modifyOutputPath: false
...