-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines.yml
251 lines (228 loc) · 8.19 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
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
trigger:
batch: true
branches:
include:
- main
pr:
branches:
include:
- main
resources:
repositories:
- repository: templates
type: github
name: AVEVA/AVEVA-Samples
endpoint: AVEVA
variables:
- template: '/miscellaneous/build_templates/variables.yml@templates'
- name: CertFile
value: cert.cer
- name: RootCertificateADH
value: product-readiness.omf-basic_api-cpp.adh.cer
parameters:
- name: poolADH
default: DevOps Managed Containers Build
- name: containerDemandsADH
type: object
default: ['Agent.OS -equals Windows_NT', 'SKU -equals VSEnterprise2022']
- name: poolPI
default: DevOps Managed Containers Build
- name: containerDemandsPI
type: object
default: ['Agent.OS -equals Windows_NT', 'SKU -equals VSEnterprise2022']
- name: poolEDS
default: DevOps Managed Containers Build
- name: containerDemandsEDS
type: object
default: ['Agent.OS -equals Windows_NT', 'SKU -equals VSEnterprise2022']
jobs:
- job: Tests_ADH
pool:
name: ${{ parameters.poolADH }}
demands: ${{ parameters.containerDemandsADH }}
variables:
- name: Endpoints.0.Selected
value: true
- name: Endpoints.1.Selected
value: false
- name: Endpoints.2.Selected
value: false
- name: Endpoints.0.TenantId
value: $(TenantId)
- name: Endpoints.0.NamespaceId
value: $(NamespaceId)
- name: Endpoints.0.ClientId
value: $(ClientId)
- name: Endpoints.0.ClientSecret
value: $(ClientSecret)
- name: Endpoints.0.Resource
value: $(Resource)
- name: Endpoints.0.VerifySSL
value: $(CertFile)
steps:
- template: '/miscellaneous/build_templates/appsettings.yml@templates'
parameters:
secrets: 'TenantId, NamespaceId, ClientId, ClientSecret, Resource'
- task: NuGetCommand@2
displayName: 'Restore Packages'
inputs:
command: 'restore'
feedsToUse: 'config'
nugetConfigPath: 'nuget.config'
- task: VSBuild@1
inputs:
configuration: $(BuildConfiguration)
platform: $(BuildPlatform)
- template: '/miscellaneous/build_templates/config.yml@templates'
parameters:
fileOriginal: $(CertFile)
fileLibrary: $(RootCertificateADH)
filePath: '/Debug UnitTests'
- task: PowerShell@1
displayName: 'Load boost test adapter location'
inputs:
scriptType: inlineScript
arguments: '-VisualStudioLocation:"C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise"'
inlineScript: |
Param(
[string]$VisualStudioLocation
)
$boostTestAdapter = Get-ChildItem -Recurse -Filter "boosttestadapter.dll" -Path $VisualStudioLocation
$testAdapterDir = $boostTestAdapter.Directory.FullName
if(-not(Test-Path $testAdapterDir))
{
Write-Error "Boost test adapter not found!"
}
Write-Host "Boost test adapter location: $testAdapterDir"
Write-Host "##vso[task.setvariable variable=BoostTestAdapterLocation]$testAdapterDir"
- task: VSTest@2
inputs:
testAssemblyVer2: '**\*.exe'
searchFolder: '$(System.DefaultWorkingDirectory)'
vsTestVersion: 'Latest'
pathtoCustomTestAdapters: '$(BoostTestAdapterLocation)'
otherConsoleOptions: '/Platform:x86'
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'
failOnMinTestsNotRun: true
diagnosticsEnabled: true
rerunFailedTests: true
condition: succeededOrFailed()
- job: Tests_PI
pool:
name: ${{ parameters.poolPI }}
demands: ${{ parameters.containerDemandsPI }}
variables:
- name: Endpoints.0.Selected
value: false
- name: Endpoints.1.Selected
value: false
- name: Endpoints.2.Selected
value: true
- name: Endpoints.2.Resource
value: $(PIWebAPI)
- name: Endpoints.2.Username
value: $(Username)
- name: Endpoints.2.Password
value: $(Password)
- name: Endpoints.2.DataArchiveName
value: $(DataArchiveName)
- name: Endpoints.2.VerifySSL
value: ''
steps:
- template: '/miscellaneous/build_templates/appsettings.yml@templates'
parameters:
secrets: 'Username, Password, PIWebAPI, DataArchiveName'
- task: NuGetCommand@2
displayName: 'Restore Packages'
inputs:
command: 'restore'
feedsToUse: 'config'
nugetConfigPath: 'nuget.config'
- task: VSBuild@1
inputs:
configuration: $(BuildConfiguration)
platform: $(BuildPlatform)
- task: PowerShell@1
displayName: 'Load boost test adapter location'
inputs:
scriptType: inlineScript
arguments: '-VisualStudioLocation:"C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise"'
inlineScript: |
Param(
[string]$VisualStudioLocation
)
$boostTestAdapter = Get-ChildItem -Recurse -Filter "boosttestadapter.dll" -Path $VisualStudioLocation
$testAdapterDir = $boostTestAdapter.Directory.FullName
if(-not(Test-Path $testAdapterDir))
{
Write-Error "Boost test adapter not found!"
}
Write-Host "Boost test adapter location: $testAdapterDir"
Write-Host "##vso[task.setvariable variable=BoostTestAdapterLocation]$testAdapterDir"
- task: VSTest@2
inputs:
testAssemblyVer2: '**\*.exe'
searchFolder: '$(System.DefaultWorkingDirectory)'
vsTestVersion: 'Latest'
pathtoCustomTestAdapters: '$(BoostTestAdapterLocation)'
otherConsoleOptions: '/Platform:x86'
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'
failOnMinTestsNotRun: true
diagnosticsEnabled: true
rerunFailedTests: true
condition: succeededOrFailed()
- job: Tests_EDS
pool:
name: ${{ parameters.poolEDS }}
demands: ${{ parameters.containerDemandsEDS }}
variables:
- name: Endpoints.0.Selected
value: false
- name: Endpoints.1.Selected
value: true
- name: Endpoints.2.Selected
value: false
steps:
- template: '/miscellaneous/build_templates/appsettings.yml@templates'
- task: NuGetCommand@2
displayName: 'Restore Packages'
inputs:
command: 'restore'
feedsToUse: 'config'
nugetConfigPath: 'nuget.config'
- task: VSBuild@1
inputs:
configuration: $(BuildConfiguration)
platform: $(BuildPlatform)
- task: PowerShell@1
displayName: 'Load boost test adapter location'
inputs:
scriptType: inlineScript
arguments: '-VisualStudioLocation:"C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise"'
inlineScript: |
Param(
[string]$VisualStudioLocation
)
$boostTestAdapter = Get-ChildItem -Recurse -Filter "boosttestadapter.dll" -Path $VisualStudioLocation
$testAdapterDir = $boostTestAdapter.Directory.FullName
if(-not(Test-Path $testAdapterDir))
{
Write-Error "Boost test adapter not found!"
}
Write-Host "Boost test adapter location: $testAdapterDir"
Write-Host "##vso[task.setvariable variable=BoostTestAdapterLocation]$testAdapterDir"
- task: VSTest@2
inputs:
testAssemblyVer2: '**\*.exe'
searchFolder: '$(System.DefaultWorkingDirectory)'
vsTestVersion: 'Latest'
pathtoCustomTestAdapters: '$(BoostTestAdapterLocation)'
otherConsoleOptions: '/Platform:x86'
platform: '$(BuildPlatform)'
configuration: '$(BuildConfiguration)'
failOnMinTestsNotRun: true
diagnosticsEnabled: true
rerunFailedTests: true
condition: succeededOrFailed()