@@ -116,7 +116,7 @@ parameters:
116116
117117variables :
118118 - template : libraries/ci-build-variables.yml@self
119-
119+
120120 - name : artifactName
121121 value : Artifacts
122122
@@ -144,7 +144,7 @@ stages:
144144 mdsPackageVersion : $(NugetPackageVersion)
145145 ${{ if eq(parameters.debug, 'true') }} :
146146 verbosity : ' detailed'
147-
147+
148148 - template : common/templates/stages/ci-run-tests-stage.yml@self
149149 parameters :
150150 debug : ${{ parameters.debug }}
@@ -175,7 +175,7 @@ stages:
175175 artifactName : $(artifactName)
176176 buildType : ${{ parameters.buildType }}
177177 buildConfiguration : ${{ parameters.buildConfiguration }}
178-
178+
179179 # Include the code coverage job under certain circumstances:
180180 #
181181 # - testType is not All:
@@ -207,15 +207,16 @@ stages:
207207 #
208208 # We're choosing to upload from these pipelines only:
209209 #
210- # - PR-SqlClient-Project
211- # - CI-SqlClient
210+ # - PR-SqlClient-Project (Unit and Functional tests)
211+ # - PR-SqlClient-Package (Manual tests)
212+ # - CI-SqlClient (All tests)
212213 #
213- # Other pipelines that share this template and use a Project
214- # buildType don't add much, if any, value to the coverage reports.
215- # They have not been configured with suitable CodeCov credentials to
216- # perform the upload.
214+ # Other pipelines that share this template buildType don't add much,
215+ # if any, value to the coverage reports. They have not been
216+ # configured with suitable CodeCov credentials to perform the
217+ # upload.
217218 #
218- upload : ${{ or(eq(variables['Build.DefinitionName'], 'PR-SqlClient-Project'), eq(variables['Build.DefinitionName'], 'CI-SqlClient')) }}
219+ upload : ${{ or(eq(variables['Build.DefinitionName'], 'PR-SqlClient-Project'), eq(variables['Build.DefinitionName'], 'PR-SqlClient-Package'), eq(variables['Build.DefinitionName'], ' CI-SqlClient')) }}
219220
220221# test stages configurations
221222 # self hosted SQL Server on Windows
@@ -303,10 +304,10 @@ stages:
303304 # skipSqlConfiguration: # skips the SQL configuration step
304305
305306
306- windows_sql_22_x64 :
307+ windows_sql_22_x64 :
307308 pool : ${{parameters.defaultPoolName }}
308309 images :
309- Win22_Sql22 : ADO-MMS22-SQL22
310+ Win22_Sql22 : ADO-MMS22-SQL22
310311 TargetFrameworks : ${{parameters.targetFrameworks }}
311312 netcoreVersionTestUtils : ${{parameters.netcoreVersionTestUtils }}
312313 buildPlatforms : ${{parameters.buildPlatforms }}
@@ -332,10 +333,10 @@ stages:
332333 enableLocalDB : true
333334
334335
335- windows_sql_22_x86 :
336+ windows_sql_22_x86 :
336337 pool : ${{parameters.defaultPoolName }}
337338 images :
338- Win22_Sql22_x86 : ADO-MMS22-SQL22
339+ Win22_Sql22_x86 : ADO-MMS22-SQL22
339340 TargetFrameworks : [net462, net8.0, net9.0]
340341 netcoreVersionTestUtils : ${{parameters.netcoreVersionTestUtils }}
341342 buildPlatforms : ${{parameters.buildPlatforms }}
@@ -386,8 +387,8 @@ stages:
386387
387388 # Azure SQL Server - Windows
388389 windows_azure_sql :
389- pool : ${{parameters.defaultPoolName }}
390- images :
390+ pool : ${{parameters.defaultPoolName }}
391+ images :
391392 Win22_Azure_Sql : ADO-MMS22-SQL19
392393 Win11_Azure_Sql : ADO-CI-Win11
393394 TargetFrameworks : ${{parameters.targetFrameworks }}
@@ -420,7 +421,7 @@ stages:
420421
421422 windows_azure_arm64_sql :
422423 pool : ADO-CI-PUBLIC-ARM64-1ES-EUS-POOL
423- images :
424+ images :
424425 Win11_ARM64_Azure_Sql : ADO-WIN11-ARM64
425426 isArm64 : true
426427 TargetFrameworks : ${{parameters.targetFrameworks }}
@@ -453,7 +454,7 @@ stages:
453454 ${{ if and(eq(parameters.runAlwaysEncryptedTests, true), eq(variables['system.pullRequest.isFork'], 'False')) }} :
454455 windows_enclave_sql :
455456 pool : ADO-CI-AE-1ES-Pool
456- images :
457+ images :
457458 Win22_Enclave_Sql19 : ADO-MMS22-SQL19
458459 TargetFrameworks : ${{parameters.targetFrameworks }}
459460 netcoreVersionTestUtils : ${{parameters.netcoreVersionTestUtils }}
@@ -477,7 +478,7 @@ stages:
477478 AzureKeyVaultTenantId : $(AzureKeyVaultTenantId)
478479 SupportsIntegratedSecurity : $(SupportsIntegratedSecurity)
479480 UserManagedIdentityClientId : $(UserManagedIdentityClientId)
480- AliasName : $(SQLAliasName)
481+ AliasName : $(SQLAliasName)
481482 LocalDbAppName : $(LocalDbAppName)
482483 LocalDbSharedInstanceName : $(LocalDbSharedInstanceName)
483484
0 commit comments