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
6 changes: 6 additions & 0 deletions eng/pipelines/diagnostics/runtime-diag-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ parameters:
disableComponentGovernance: ''
liveRuntimeDir: ''
useCdac: false
classFilter: ''

jobs:
- template: /eng/common/${{ parameters.templatePath }}/job/job.yml
Expand Down Expand Up @@ -88,6 +89,7 @@ jobs:
- _TestArgs: '-test'
- _Cross: ''
- _CdacArgs: ''
- _ClassFilterArgs: ''

- _buildScript: $(Build.SourcesDirectory)$(dir)build$(scriptExt)

Expand All @@ -103,6 +105,9 @@ jobs:
- ${{ if eq(parameters.useCdac, 'true') }}:
- _CdacArgs: '-useCdac'

- ${{ if ne(parameters.classFilter, '') }}:
- _ClassFilterArgs: '-classfilter ${{ parameters.classFilter }}'

# For testing msrc's and service releases. The RuntimeSourceVersion is either "default" or the service release version to test
- _InternalInstallArgs: ''
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.isCodeQLRun, 'false')) }}:
Expand Down Expand Up @@ -200,6 +205,7 @@ jobs:
$(_TestArgs)
$(_Cross)
$(_InternalInstallArgs)
$(_ClassFilterArgs)
/p:OfficialBuildId=$(BUILD.BUILDNUMBER)
${{ if eq(parameters.testOnly, 'true') }}:
displayName: Test
Expand Down
2 changes: 2 additions & 0 deletions eng/pipelines/runtime-diagnostics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ extends:
jobParameters:
name: cDAC
useCdac: true
classFilter: SOS
isOfficialBuild: ${{ variables.isOfficialBuild }}
liveRuntimeDir: $(Build.SourcesDirectory)/artifacts/runtime
timeoutInMinutes: 360
Expand Down Expand Up @@ -156,6 +157,7 @@ extends:
jobParameters:
name: DAC
useCdac: false
classFilter: SOS
isOfficialBuild: ${{ variables.isOfficialBuild }}
liveRuntimeDir: $(Build.SourcesDirectory)/artifacts/runtime
timeoutInMinutes: 360
Expand Down
Loading