Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
eae08fc
[Release/6.1] Governed release templates
cheenamalhotra Mar 11, 2026
b9ae937
Update ESRP tasks to v6
cheenamalhotra Mar 11, 2026
7162273
Install .NEY 10 and update ESRP variables in use.
cheenamalhotra Apr 9, 2026
255ed12
Install .NET 10, address official build requirements, and update ESRP…
cheenamalhotra Apr 9, 2026
d942ce5
Merge branch 'dev/cheena/6.1-gov-templates' of https://sqlclientdrive…
cheenamalhotra Apr 9, 2026
1f55151
Merge branch 'dev/cheena/6.1-gov-templates' of https://sqlclientdrive…
cheenamalhotra Apr 9, 2026
eba210f
Merge branch 'dev/cheena/6.1-gov-templates' of https://sqlclientdrive…
cheenamalhotra Apr 9, 2026
7ab5b32
Merge branch 'dev/cheena/6.1-gov-templates' of https://sqlclientdrive…
cheenamalhotra Apr 9, 2026
00cb354
Merge branch 'dev/cheena/6.1-gov-templates' of https://sqlclientdrive…
cheenamalhotra Apr 9, 2026
a88c985
Merge branch 'dev/cheena/6.1-gov-templates' of https://sqlclientdrive…
cheenamalhotra Apr 9, 2026
1914f98
Merge branch 'dev/cheena/6.1-gov-templates' of https://sqlclientdrive…
cheenamalhotra Apr 9, 2026
7fea8e8
Merge branch 'dev/cheena/6.1-gov-templates' of https://sqlclientdrive…
cheenamalhotra Apr 9, 2026
8e91336
Merge branch 'dev/cheena/6.1-gov-templates' of https://sqlclientdrive…
cheenamalhotra Apr 9, 2026
97983e8
Minor touch-ups
cheenamalhotra Apr 9, 2026
fbdac7b
Skip signature validation in non-official + .net sdk upgrade
cheenamalhotra Apr 10, 2026
4d82a20
Merge branch 'release/6.1' into dev/cheena/6.1-gov-templates
cheenamalhotra Apr 22, 2026
77337aa
Update versions
cheenamalhotra Apr 22, 2026
eec6186
Update symbols publishing to isolate environments
cheenamalhotra Apr 22, 2026
5bd58ee
Update verify step
cheenamalhotra Apr 22, 2026
4a8bfca
Remove run package ref tests
cheenamalhotra Apr 23, 2026
8bac315
Update variable
cheenamalhotra Apr 23, 2026
0f40894
Address remaining gaps for MDS
cheenamalhotra Apr 23, 2026
6f790b6
Tidied up a few things rather than go back and forth in review conver…
paulmedynski Apr 23, 2026
c50a58e
Add variables back
cheenamalhotra Apr 23, 2026
a8c4f01
Touch-ups
cheenamalhotra Apr 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
147 changes: 0 additions & 147 deletions eng/pipelines/akv-official-pipeline.yml

This file was deleted.

10 changes: 5 additions & 5 deletions eng/pipelines/common/templates/jobs/ci-build-nugets-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- msbuild

variables:
- template: ../../../libraries/ci-build-variables.yml@self
- template: /eng/pipelines/libraries/ci-build-variables.yml@self
Comment thread
cheenamalhotra marked this conversation as resolved.

steps:
- ${{ if ne(parameters.prebuildSteps, '') }}:
Expand All @@ -52,21 +52,21 @@ jobs:
# compilation errors. We won't use the Release artifacts for anything else
# though.
- ${{ if eq(parameters.configuration, 'Debug') }}:
- template: ../steps/ci-project-build-step.yml@self
- template: /eng/pipelines/common/templates/steps/ci-project-build-step.yml@self
parameters:
platform: ${{ parameters.platform }}
configuration: Release
operatingSystem: Windows
build: all

- template: ../steps/ci-project-build-step.yml@self
- template: /eng/pipelines/common/templates/steps/ci-project-build-step.yml@self
parameters:
platform: ${{ parameters.platform }}
configuration: ${{ parameters.configuration }}
operatingSystem: Windows
build: all

- template: ../steps/generate-nuget-package-step.yml@self
- template: /eng/pipelines/common/templates/steps/generate-nuget-package-step.yml@self
parameters:
NugetPackageVersion: $(NugetPackageVersion)
configuration: $(Configuration)
Expand All @@ -75,7 +75,7 @@ jobs:
generateSymbolsPackage: false
displayName: 'Generate NuGet package M.D.SqlClient'

- template: ../steps/generate-nuget-package-step.yml@self
- template: /eng/pipelines/common/templates/steps/generate-nuget-package-step.yml@self
parameters:
NugetPackageVersion: $(NugetPackageVersion)
configuration: $(Configuration)
Expand Down
14 changes: 7 additions & 7 deletions eng/pipelines/common/templates/jobs/ci-run-tests-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ jobs:
- ${{ parameters.prebuildSteps }} # extra steps to run before the build like downloading sni and the required configuration

- ${{ if eq(parameters.buildType, 'Project') }}:
- template: ../steps/ci-project-build-step.yml@self
- template: /eng/pipelines/common/templates/steps/ci-project-build-step.yml@self
parameters:
build: allNoDocs

- ${{ if ne(parameters.configProperties, '{}') }}:
- template: ../steps/update-config-file-step.yml@self # update config.json file
- template: /eng/pipelines/common/templates/steps/update-config-file-step.yml@self # update config.json file
parameters:
debug: ${{ parameters.debug }}
saPassword: ${{ parameters.saPassword }}
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
displayName: 'Start Sql Browser'
condition: eq(variables['Agent.OS'], 'Windows_NT')
- ${{ elseif eq(parameters.configSqlFor, 'local') }}:
- template: ../steps/configure-sql-server-step.yml@self # configure SQL Server
- template: /eng/pipelines/common/templates/steps/configure-sql-server-step.yml@self # configure SQL Server
parameters:
operatingSystem: ${{ parameters.operatingSystem }}
netcoreVersionTestUtils: ${{ parameters.netcoreVersionTestUtils }}
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
${{ if parameters.configProperties.FileStreamDirectory }}:
fileStreamDirectory: ${{ parameters.configProperties.FileStreamDirectory }}

- template: ../steps/build-all-tests-step.yml@self # build tests
- template: /eng/pipelines/common/templates/steps/build-all-tests-step.yml@self # build tests
parameters:
targetFramework: ${{ parameters.targetFramework }}
referenceType: ${{ parameters.buildType }}
Expand All @@ -245,7 +245,7 @@ jobs:
OSGroup: Unix

- ${{ if eq(parameters.enableX64Test, true) }}: # run native tests
- template: ../steps/run-all-tests-step.yml@self # run tests
- template: /eng/pipelines/common/templates/steps/run-all-tests-step.yml@self # run tests
parameters:
debug: ${{ parameters.debug }}
targetFramework: ${{ parameters.targetFramework }}
Expand All @@ -268,7 +268,7 @@ jobs:
installDir: $(dotnetx86RootPath)
runtimes: [8.x, 9.x]

- template: ../steps/run-all-tests-step.yml@self
- template: /eng/pipelines/common/templates/steps/run-all-tests-step.yml@self
parameters:
debug: ${{ parameters.debug }}
targetFramework: ${{ parameters.targetFramework }}
Expand All @@ -279,7 +279,7 @@ jobs:
operatingSystem: ${{ parameters.operatingSystem }}

- ${{ if and(eq(parameters.publishTestResults, true), eq(parameters.buildType, 'Project')) }}: # publish test results if build type is project
- template: ../steps/publish-test-results-step.yml@self
- template: /eng/pipelines/common/templates/steps/publish-test-results-step.yml@self
parameters:
debug: ${{ parameters.debug }}
targetFramework: ${{ parameters.targetFramework }}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ stages:
- ${{ each platform in config.value.buildPlatforms }}:
- ${{ each testSet in config.value.TestSets }}:
- ${{ if contains(targetFramework, 'net4') }}: # .NET Framework
- template: ../jobs/ci-run-tests-job.yml@self
- template: /eng/pipelines/common/templates/jobs/ci-run-tests-job.yml@self
parameters:
debug: ${{ parameters.debug }}
buildType: ${{ parameters.buildType }}
Expand Down Expand Up @@ -85,7 +85,7 @@ stages:
enableX64Test: false
- ${{ else }}: # .NET
- ${{ each useManagedSNI in config.value.useManagedSNI }}:
- template: ../jobs/ci-run-tests-job.yml@self
- template: /eng/pipelines/common/templates/jobs/ci-run-tests-job.yml@self
parameters:
debug: ${{ parameters.debug }}
buildType: ${{ parameters.buildType }}
Expand Down
Loading
Loading