Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 9 additions & 1 deletion eng/pipelines/kerberos/sqlclient-kerberos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ stages:
parameters:
runtimes: [8.x, 9.x]

# Restore dotnet local tools (pwsh, apicompat, etc.). Required by build.proj targets
# such as _CheckPwshToolRestored that run during the SqlClient ref project build.
Comment thread
cheenamalhotra marked this conversation as resolved.
- template: /eng/pipelines/steps/restore-dotnet-tools.yml@self

# --- Update test configuration ---
# Uses runtime variables from the matrix ($(managedSNI)) so we use
# inline PowerShell instead of the shared config template which
Expand Down Expand Up @@ -224,6 +228,10 @@ stages:
parameters:
runtimes: [8.x, 9.x]

# Restore dotnet local tools (pwsh, apicompat, etc.). Required by build.proj targets
# such as _CheckPwshToolRestored that run during the SqlClient ref project build.
Comment thread
cheenamalhotra marked this conversation as resolved.
- template: /eng/pipelines/steps/restore-dotnet-tools.yml@self

# --- Update test configuration (with Kerberos credentials) ---
- pwsh: |
$jdata = Get-Content -Raw "config.default.json" | ConvertFrom-Json
Expand Down Expand Up @@ -283,7 +291,7 @@ stages:
dependsOn:
- windows
- linux
condition: succeededOrFailed()
condition: succeeded()
jobs:
- template: /eng/pipelines/common/templates/jobs/ci-code-coverage-job.yml@self
parameters:
Expand Down
4 changes: 4 additions & 0 deletions eng/pipelines/onebranch/jobs/build-buildproj-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ jobs:
# Install the .NET SDK.
- template: /eng/pipelines/steps/install-dotnet.yml@self

# Restore dotnet local tools (pwsh, apicompat, etc.). Required by build.proj targets
# such as _CheckPwshToolRestored that run during RoslynAnalyzers and Build.
Comment thread
cheenamalhotra marked this conversation as resolved.
- template: /eng/pipelines/steps/restore-dotnet-tools.yml@self

# Perform Roslyn analysis before building, since this step will clobber build output.
- template: /eng/pipelines/onebranch/steps/roslyn-analyzers-buildproj-step.yml@self
parameters:
Expand Down
Loading