You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WindowsContainerImage: 'onebranch.azurecr.io/windows/ltsc2019/vse2022:latest'# Docker image which is used to build the project https://aka.ms/obpipelines/containers
type: windows # read more about custom job pool types at https://aka.ms/obpipelines/yaml/jobs
59
+
60
+
variables: # More settings at https://aka.ms/obpipelines/yaml/jobs
61
+
ob_outputDirectory: '$(Build.SourcesDirectory)\out'# this directory is uploaded to pipeline artifacts, reddog and cloudvault. More info at https://aka.ms/obpipelines/artifacts
62
+
# https://aka.ms/obpipelines/sdl
63
+
ob_sdl_binskim_break: true # always break the build on binskim issues, even if TSA enabled. You can disable it by setting to 'false'
64
+
ob_sdl_roslyn_break: true
65
+
${{ if eq(variables['Build.SourceBranch'], 'refs/heads/main') }}: # conditionally enable symbolsPublishing for main branch only
# uncomment this section and edit parameters to enable VSTest instead of dotnet tests. When you enable this you dont need publish test results and codecoverage steps
131
+
# - task: VSTest@3
132
+
# inputs:
133
+
# testSelector: 'testAssemblies'
134
+
# testAssemblyVer2: |
135
+
# **\*test*.dll
136
+
# !**\*TestAdapter.dll
137
+
# !**\obj\**
138
+
# searchFolder: '$(Build.SourcesDirectory)\out' ## or use '$(Agent.BuildDirectory)'
#runInParallel: true ## this setting helps to speed up test case execution but if youhave depdencies between tests you change or remove this but having it enabled is always recommended
142
+
#codeCoverageEnabled: true
143
+
#testRunTitle: 'release_x64' ## Update this for a custom readable way of taggin your test run when you query in ADO test runs view
144
+
#platform: 'x64' ## you can modify this as needed
145
+
#configuration: 'release'
146
+
#publishRunAttachments: false
147
+
#failOnMinTestsNotRun: true
148
+
#rerunFailedTests: true
149
+
#rerunFailedThreshold: '70'
150
+
# https://aka.ms/obpipelines/cloudtest
151
+
# uncomment this section and edit parameters to enable CloudTest
0 commit comments