Skip to content
Open
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
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
]
},
"microsoft.dotnet.helix.jobmonitor": {
"version": "11.0.0-beta.26421.1",
"version": "11.0.0-beta.26424.2",
"commands": [
"dotnet-helix-job-monitor"
]
Expand Down
7 changes: 7 additions & 0 deletions eng/common/core-templates/job/helix-job-monitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ parameters:
type: number
default: 30

# Maximum number of work items whose results may be downloaded, parsed, and
# uploaded concurrently.
Comment on lines +65 to +66
- name: testResultUploadParallelism
type: number
default: 8

# When 'true' (the default), Helix work items that exit 0 but have failed AzDO test results
# are treated as failed: they count toward the monitor's exit code and are resubmitted by a
# later invocation's retry pass. Set to 'false' to fall back to exit-code-only outcomes.
Expand Down Expand Up @@ -206,6 +212,7 @@ jobs:
--max-wait-minutes "$((${{ parameters.timeoutInMinutes }} - 5))" # Set the tool's timeout slightly lower than the Azure DevOps job timeout to allow it to exit gracefully.
--stage-name '$(System.StageName)'
--stage-attempt '$(System.StageAttempt)'
--test-result-upload-parallelism '${{ parameters.testResultUploadParallelism }}'
)

organization='${{ parameters.organization }}'
Expand Down
3 changes: 2 additions & 1 deletion eng/pipelines/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pr:
variables:
- template: /eng/pipelines/common/variables.yml
- name: enableHelixJobMonitor
value: false
value: true
- template: /eng/pipelines/helix-platforms.yml

extends:
Expand All @@ -71,6 +71,7 @@ extends:
parameters:
helixAccessToken: $(HelixApiAccessToken)
timeoutInMinutes: 540
testResultUploadParallelism: 48
# Some path-filtered builds intentionally submit no Helix jobs.
allowNoHelixJobs: true

Expand Down