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
12 changes: 10 additions & 2 deletions eng/pipelines/dotnet-sqlclient-signing-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,22 @@ extends:
featureFlags:
WindowsHostVersion: 1ESWindows2022
globalSdl: # https://aka.ms/obpipelines/sdl
tsa:
# The OneBranch template will set 'break' to false for the other SDL
# tools when TSA is enabled. This allows TSA to gather the results
# and publish them for downstream analysis.
enabled: ${{parameters.enableAllSdlTools }}
apiscan:
enabled: ${{parameters.enableAllSdlTools }}
# For non-official builds, the OneBranch template seems to set APIScan's
# 'break' to true even when TSA is enabled. We don't want APIScan to
# break non-official builds, so we explicitly set 'break' to false here.
${{ if ne(parameters.oneBranchType, 'Official') }}:
break: false
softwareFolder: $(softwareFolder)
symbolsFolder: $(symbolsFolder)
softwarename: Microsoft.Data.SqlClient
versionNumber: $(AssemblyFileVersion)
tsa:
enabled: ${{parameters.enableAllSdlTools }} # onebranch publish all sdl results to TSA. If TSA is disabled all SDL tools will forced into 'break' build mode.
codeql:
compiled:
enabled: false #[warning]Consider running CodeQL on the default branch only.
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/libraries/mds-variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variables:
- name: Minor
value: 1
- name: Patch
value: 6
value: 7
- name: Packaging.EnableSBOMSigning
value: true

Expand Down
Loading