forked from CommunityToolkit/Microsoft.Toolkit.Win32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
157 lines (134 loc) · 3.79 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
trigger:
- master
- rel/*
pr:
- master
- rel/*
pool:
vmImage: 'windows-2019'
variables:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
BuildConfiguration: Release
steps:
- task: NuGetToolInstaller@0
displayName: Use NuGet 5.0.0
inputs:
versionSpec: 5.0.0
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '3.0.100'
displayName: Use .NET Core sdk
- 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 18362
displayName: Insider SDK
- 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
#- powershell: .\build\build.ps1 -target=Package
# displayName: Build
- task: NuGetCommand@2
displayName: NuGet restore Native projects
inputs:
command: restore
configuration: Release
restoreSolution: Microsoft.Toolkit.Win32.UI.XamlApplication\packages.config
restoreDirectory: ../packages/
verbosityRestore: Detailed # Options: quiet, normal, detaile
- task: MSBuild@1
displayName: Build x64 Restore
inputs:
solution: Microsoft.Toolkit.Win32.sln
platform: x64
configuration: Release
msbuildArguments: /target:Restore
restoreNugetPackages: false # Optional
- task: MSBuild@1
displayName: Build x64
inputs:
solution: Microsoft.Toolkit.Win32.sln
platform: x64
configuration: Release
msbuildArguments: /target:Build
restoreNugetPackages: false # Optional
- task: MSBuild@1
displayName: Build x86 Restore
inputs:
solution: Microsoft.Toolkit.Win32.sln
platform: x86
configuration: Release
msbuildArguments: /target:Restore
restoreNugetPackages: false # Optional
- task: MSBuild@1
displayName: Build x86
inputs:
solution: Microsoft.Toolkit.Win32.sln
platform: x86
configuration: Release
msbuildArguments: /target:Build
restoreNugetPackages: false # Optional
- task: MSBuild@1
displayName: Build ARM Restore
inputs:
solution: Microsoft.Toolkit.Win32.sln
platform: ARM
configuration: Release
msbuildArguments: /target:Restore
restoreNugetPackages: false # Optional
- task: MSBuild@1
displayName: Build ARM
inputs:
solution: Microsoft.Toolkit.Win32.sln
platform: ARM
configuration: Release
msbuildArguments: /target:Build
restoreNugetPackages: false # Optional
- task: MSBuild@1
displayName: Build ARM64 Restore
inputs:
solution: Microsoft.Toolkit.Win32.sln
platform: ARM64
configuration: Release
msbuildArguments: /target:Restore
restoreNugetPackages: false # Optional
- task: MSBuild@1
displayName: Build ARM64
inputs:
solution: Microsoft.Toolkit.Win32.sln
platform: ARM64
configuration: Release
msbuildArguments: /target:Build
restoreNugetPackages: false # Optional
- task: MSBuild@1
displayName: Build Pack
inputs:
solution: Microsoft.Toolkit.Win32.sln
platform: x86
configuration: Release
msbuildArguments: /target:Pack
restoreNugetPackages: false # Optional
- 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: PublishBuildArtifacts@1
displayName: Publish Package Artifacts
inputs:
pathToPublish: .\bin\nupkg
artifactType: container
artifactName: Packages