From 45ff8235b1ae23063e6175b5ed2b40f6d76acfee Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Aug 2026 08:53:49 +0000 Subject: [PATCH 1/9] Backflow from https://github.com/dotnet/dotnet / e20a5af build 328663 Diff: https://github.com/dotnet/dotnet/compare/361d4f1cdad4d5a13961cde7bb455f0a47cbbffd..e20a5af9c83aaf22b041bc9911de0cbfff9c7317 From: https://github.com/dotnet/dotnet/commit/361d4f1cdad4d5a13961cde7bb455f0a47cbbffd To: https://github.com/dotnet/dotnet/commit/e20a5af9c83aaf22b041bc9911de0cbfff9c7317 [[ commit created by automation ]] --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 90b54be1ec..af957c5b62 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -5,7 +5,7 @@ 11.0.100 rc - 1 + 2 From 893d462e9226fecf27bb984c32d68f3f9e22d038 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Aug 2026 08:53:50 +0000 Subject: [PATCH 2/9] Update dependencies from build 328663 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26411.119 -> 11.0.0-beta.26425.121) System.CommandLine (Version 3.0.0-rc.1.26411.119 -> 3.0.0-rc.2.26425.121) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.1.26411.119 -> 11.0.0-rc.2.26425.121) [[ commit created by automation ]] --- eng/Version.Details.props | 10 ++++----- eng/Version.Details.xml | 22 +++++++++---------- eng/common/Get-GitHubAppToken.ps1 | 18 +++++++++++---- .../core-templates/job/helix-job-monitor.yml | 13 +++++++++++ eng/common/core-templates/job/onelocbuild.yml | 22 +++++++++++-------- .../core-templates/post-build/post-build.yml | 1 + .../core-templates/steps/publish-logs.yml | 22 +++++++++++++------ global.json | 6 ++--- 8 files changed, 75 insertions(+), 39 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 6186912400..b45cc52e4c 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26411.119 - 3.0.0-rc.1.26411.119 - 11.0.0-rc.1.26411.119 - 11.0.0-rc.1.26411.119 - 11.0.0-rc.1.26411.119 + 11.0.0-beta.26425.121 + 3.0.0-rc.2.26425.121 + 11.0.0-rc.2.26425.121 + 11.0.0-rc.2.26425.121 + 11.0.0-rc.2.26425.121 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index eacb000902..b1e3043aa4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 7cdb217445905f3342bbb0266a4497b9a014389a + e20a5af9c83aaf22b041bc9911de0cbfff9c7317 - + https://github.com/dotnet/dotnet - 7cdb217445905f3342bbb0266a4497b9a014389a + e20a5af9c83aaf22b041bc9911de0cbfff9c7317 - + https://github.com/dotnet/dotnet - 7cdb217445905f3342bbb0266a4497b9a014389a + e20a5af9c83aaf22b041bc9911de0cbfff9c7317 - + https://github.com/dotnet/dotnet - 7cdb217445905f3342bbb0266a4497b9a014389a + e20a5af9c83aaf22b041bc9911de0cbfff9c7317 - + https://github.com/dotnet/dotnet - 7cdb217445905f3342bbb0266a4497b9a014389a + e20a5af9c83aaf22b041bc9911de0cbfff9c7317 diff --git a/eng/common/Get-GitHubAppToken.ps1 b/eng/common/Get-GitHubAppToken.ps1 index 6b5899d7a2..9c7e3dcd6a 100644 --- a/eng/common/Get-GitHubAppToken.ps1 +++ b/eng/common/Get-GitHubAppToken.ps1 @@ -113,10 +113,13 @@ try { $installations = @() $page = 1 do { - $pageInstallations = @(Invoke-RestMethod ` + # Assign the response before wrapping it in @(). PowerShell otherwise + # preserves a top-level JSON array as one nested pipeline object. + $pageResponse = Invoke-RestMethod ` -Uri "https://api.github.com/app/installations?per_page=100&page=$page" ` -Headers $headers ` - -Method Get) + -Method Get + $pageInstallations = @($pageResponse) $installations += $pageInstallations $page++ } while ($pageInstallations.Count -eq 100) @@ -125,12 +128,19 @@ catch { Write-PipelineTelemetryError -Category 'Build' -Message "Failed to list GitHub App installations: $_. The signed JWT may be invalid or the App's Client ID ('$AppClientId') may be incorrect." exit 1 } -$installation = $installations | Where-Object { $_.account.login -ieq $InstallationOwner } | Select-Object -First 1 -if (-not $installation) { +$matchingInstallations = @($installations | Where-Object { $_.account.login -ieq $InstallationOwner }) +if ($matchingInstallations.Count -eq 0) { $found = ($installations | ForEach-Object { $_.account.login }) -join ', ' Write-PipelineTelemetryError -Category 'Build' -Message "No installation found for '$InstallationOwner'. App is installed on: $found" exit 1 } +if ($matchingInstallations.Count -ne 1) { + $matchingIds = ($matchingInstallations | ForEach-Object { $_.id }) -join ', ' + Write-PipelineTelemetryError -Category 'Build' -Message "Found multiple installations for '$InstallationOwner': $matchingIds" + exit 1 +} +$installation = $matchingInstallations[0] +Write-Host "Using installation $($installation.id) for '$($installation.account.login)'." try { $tokenResponse = Invoke-RestMethod ` diff --git a/eng/common/core-templates/job/helix-job-monitor.yml b/eng/common/core-templates/job/helix-job-monitor.yml index a65b50d0a7..81ecccdd17 100644 --- a/eng/common/core-templates/job/helix-job-monitor.yml +++ b/eng/common/core-templates/job/helix-job-monitor.yml @@ -84,6 +84,15 @@ parameters: type: boolean default: false +# Controls per-test output attachments. Defaults to Failed. +- name: testResultAttachmentMode + type: string + default: Failed + values: + - Failed + - All + - None + # Advanced: optional pipeline artifact (produced earlier in this run) that contains the tool # nupkg. When set, the artifact is downloaded and the tool is installed from the nupkg into # a local tool-path; this bypasses the repo's .config/dotnet-tools.json manifest and is @@ -210,6 +219,7 @@ jobs: organization='${{ parameters.organization }}' repository='${{ parameters.repository }}' + testResultAttachmentMode='${{ parameters.testResultAttachmentMode }}' # Fall back to Azure DevOps-provided environment variables when the caller did not # supply organization / repository explicitly. BUILD_REPOSITORY_NAME is typically @@ -232,6 +242,9 @@ jobs: if [ -n "$organization" ]; then toolArgs+=( --organization "$organization" ); fi if [ -n "$repository" ]; then toolArgs+=( --repository "$repository" ); fi + if [ -n "$testResultAttachmentMode" ]; then + toolArgs+=( --test-result-attachment-mode "$testResultAttachmentMode" ) + fi # Build.Reason and Build.SourceBranch are required to derive the Helix source filter # the same way the Helix SDK submitter does (PR -> 'pr', internal -> 'official', diff --git a/eng/common/core-templates/job/onelocbuild.yml b/eng/common/core-templates/job/onelocbuild.yml index 4f5653d73a..ce077368e4 100644 --- a/eng/common/core-templates/job/onelocbuild.yml +++ b/eng/common/core-templates/job/onelocbuild.yml @@ -14,10 +14,11 @@ parameters: # exist, and any pipeline that sets this to '' fall back to PAT-based auth via the CeapexPat parameter. CeapexServiceConnection: 'dnceng-onelocbuild-ceapex' - # GitHub App authentication for the OneLoc check-in PR (dnceng/internal only). - # The infrastructure identifiers are centralized here and the App path is enabled by default. - # DevDiv requires its own project-scoped service connection before this path can be enabled there. + # GitHub App authentication for the OneLoc check-in PR. + # dnceng/internal and DevDiv/DevDiv are enabled by default with their project-scoped service + # connections. Other projects must explicitly opt in after provisioning equivalent infrastructure. UseGitHubAppAuthentication: true + UseGitHubAppAuthenticationInOtherProjects: false GitHubAppServiceConnection: 'dnceng-oneloc-githubapp' GitHubAppClientId: 'Iv23lijBU8x3gc9lDOc9' GitHubAppKeyVaultName: 'EngKeyVault' @@ -98,13 +99,16 @@ jobs: outputVariableName: 'CeapexEntraToken' condition: ${{ parameters.condition }} - # Mint a short-lived GitHub App installation token for the loc check-in PR (dnceng/internal only). - # All other projects fall back to PAT-based auth, since the app service connection is scoped to dnceng/internal. - - ${{ if and(eq(parameters.RepoType, 'gitHub'), eq(parameters.UseGitHubAppAuthentication, true), eq(variables['System.TeamProject'], 'internal')) }}: + # Mint a short-lived GitHub App installation token for the loc check-in PR. Use the connection + # provisioned in each supported project; other projects must explicitly opt in and override it. + - ${{ if and(eq(parameters.RepoType, 'gitHub'), eq(parameters.UseGitHubAppAuthentication, true), or(eq(variables['System.TeamProject'], 'internal'), eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.UseGitHubAppAuthenticationInOtherProjects, true))) }}: - template: /eng/common/core-templates/steps/get-github-app-token.yml parameters: is1ESPipeline: ${{ parameters.is1ESPipeline }} - azureSubscription: ${{ parameters.GitHubAppServiceConnection }} + ${{ if and(eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.GitHubAppServiceConnection, 'dnceng-oneloc-githubapp')) }}: + azureSubscription: 'devdiv-oneloc-githubapp' + ${{ else }}: + azureSubscription: ${{ parameters.GitHubAppServiceConnection }} keyVaultName: ${{ parameters.GitHubAppKeyVaultName }} keyName: ${{ parameters.GitHubAppKeyName }} appClientId: ${{ parameters.GitHubAppClientId }} @@ -133,9 +137,9 @@ jobs: patVariable: ${{ parameters.CeapexPat }} ${{ if eq(parameters.RepoType, 'gitHub') }}: repoType: ${{ parameters.RepoType }} - ${{ if and(eq(parameters.UseGitHubAppAuthentication, true), eq(variables['System.TeamProject'], 'internal')) }}: + ${{ if and(eq(parameters.UseGitHubAppAuthentication, true), or(eq(variables['System.TeamProject'], 'internal'), eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.UseGitHubAppAuthenticationInOtherProjects, true))) }}: gitHubPatVariable: "$(GitHubAppInstallationToken)" - ${{ if or(eq(parameters.UseGitHubAppAuthentication, false), ne(variables['System.TeamProject'], 'internal')) }}: + ${{ else }}: gitHubPatVariable: "${{ parameters.GithubPat }}" ${{ if ne(parameters.MirrorRepo, '') }}: isMirrorRepoSelected: true diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 9d95135269..6dcee6664d 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -236,6 +236,7 @@ stages: StageLabel: 'Validation' JobLabel: 'Signing' BinlogToolVersion: $(BinlogToolVersion) + enableInternalRuntimes: false # SourceLink validation has been removed — the underlying CLI tool # (targeting netcoreapp2.1) has not functioned for years. diff --git a/eng/common/core-templates/steps/publish-logs.yml b/eng/common/core-templates/steps/publish-logs.yml index 2c1e0ab116..244fef0890 100644 --- a/eng/common/core-templates/steps/publish-logs.yml +++ b/eng/common/core-templates/steps/publish-logs.yml @@ -5,6 +5,7 @@ parameters: # A default - in case value from eng/common/core-templates/post-build/common-variables.yml is not passed BinlogToolVersion: '1.0.11' is1ESPipeline: false + enableInternalRuntimes: true steps: - task: Powershell@2 @@ -25,13 +26,20 @@ steps: # Sensitive data can as well be added to $(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' # If the file exists - sensitive data for redaction will be sourced from it # (single entry per line, lines starting with '# ' are considered comments and skipped) - arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' - -BinlogToolVersion '${{parameters.BinlogToolVersion}}' - -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' - -runtimeSourceFeed https://ci.dot.net/internal - -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' - '$(System.AccessToken)' - ${{parameters.CustomSensitiveDataList}} + ${{ if and(eq(parameters.enableInternalRuntimes, true), ne(variables['System.TeamProject'], 'public')) }}: + arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' + -BinlogToolVersion '${{parameters.BinlogToolVersion}}' + -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' + -runtimeSourceFeed https://ci.dot.net/internal + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' + '$(System.AccessToken)' + ${{parameters.CustomSensitiveDataList}} + ${{ else }}: + arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' + -BinlogToolVersion '${{parameters.BinlogToolVersion}}' + -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' + '$(System.AccessToken)' + ${{parameters.CustomSensitiveDataList}} continueOnError: true condition: always() diff --git a/global.json b/global.json index 2a77c9f230..e9e578061e 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "11.0.100-preview.6.26359.118", + "version": "11.0.100-rc.1.26420.103", "allowPrerelease": true, "rollForward": "latestFeature", "paths": [ @@ -10,10 +10,10 @@ "errorMessage": "The required .NET SDK wasn't found. Please run ./eng/common/dotnet.cmd/sh to install it." }, "tools": { - "dotnet": "11.0.100-preview.6.26359.118" + "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26411.119", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26425.121", "Microsoft.Build.NoTargets": "3.7.0" } } From 2f9a736810754a4df39854d7d581f48249baec89 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Aug 2026 20:26:51 +0000 Subject: [PATCH 3/9] Update dependencies from build 328805 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26425.121 -> 11.0.0-beta.26426.102) System.CommandLine (Version 3.0.0-rc.2.26425.121 -> 3.0.0-rc.2.26426.102) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26425.121 -> 11.0.0-rc.2.26426.102) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index b45cc52e4c..0e216b9e17 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26425.121 - 3.0.0-rc.2.26425.121 - 11.0.0-rc.2.26425.121 - 11.0.0-rc.2.26425.121 - 11.0.0-rc.2.26425.121 + 11.0.0-beta.26426.102 + 3.0.0-rc.2.26426.102 + 11.0.0-rc.2.26426.102 + 11.0.0-rc.2.26426.102 + 11.0.0-rc.2.26426.102 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b1e3043aa4..a0f5ee2ba0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - e20a5af9c83aaf22b041bc9911de0cbfff9c7317 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - e20a5af9c83aaf22b041bc9911de0cbfff9c7317 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - e20a5af9c83aaf22b041bc9911de0cbfff9c7317 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - e20a5af9c83aaf22b041bc9911de0cbfff9c7317 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - e20a5af9c83aaf22b041bc9911de0cbfff9c7317 + da377e2093fdde18a0d36429a2644638d07685f6 diff --git a/global.json b/global.json index e9e578061e..1ca9afa14a 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26425.121", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26426.102", "Microsoft.Build.NoTargets": "3.7.0" } } From e183b992b673d4b84f25523e17ce1b1e9dcfe681 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 27 Aug 2026 12:26:07 +0000 Subject: [PATCH 4/9] Update dependencies from build 328916 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26426.102 -> 11.0.0-beta.26426.126) System.CommandLine (Version 3.0.0-rc.2.26426.102 -> 3.0.0-rc.2.26426.126) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26426.102 -> 11.0.0-rc.2.26426.126) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 0e216b9e17..faf67bea19 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26426.102 - 3.0.0-rc.2.26426.102 - 11.0.0-rc.2.26426.102 - 11.0.0-rc.2.26426.102 - 11.0.0-rc.2.26426.102 + 11.0.0-beta.26426.126 + 3.0.0-rc.2.26426.126 + 11.0.0-rc.2.26426.126 + 11.0.0-rc.2.26426.126 + 11.0.0-rc.2.26426.126 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a0f5ee2ba0..2c987cf0e4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - da377e2093fdde18a0d36429a2644638d07685f6 + 100002779ceec649fcfd00c233f673b494130827 - + https://github.com/dotnet/dotnet - da377e2093fdde18a0d36429a2644638d07685f6 + 100002779ceec649fcfd00c233f673b494130827 - + https://github.com/dotnet/dotnet - da377e2093fdde18a0d36429a2644638d07685f6 + 100002779ceec649fcfd00c233f673b494130827 - + https://github.com/dotnet/dotnet - da377e2093fdde18a0d36429a2644638d07685f6 + 100002779ceec649fcfd00c233f673b494130827 - + https://github.com/dotnet/dotnet - da377e2093fdde18a0d36429a2644638d07685f6 + 100002779ceec649fcfd00c233f673b494130827 diff --git a/global.json b/global.json index 1ca9afa14a..6b446dca78 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26426.102", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26426.126", "Microsoft.Build.NoTargets": "3.7.0" } } From b9e94806a0aac6c653d9c24f0db79ab14a384de1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Aug 2026 03:23:43 +0000 Subject: [PATCH 5/9] Update dependencies from build 329077 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26426.126 -> 11.0.0-beta.26427.118) System.CommandLine (Version 3.0.0-rc.2.26426.126 -> 3.0.0-rc.2.26427.118) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26426.126 -> 11.0.0-rc.2.26427.118) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index faf67bea19..cae38bb4a8 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26426.126 - 3.0.0-rc.2.26426.126 - 11.0.0-rc.2.26426.126 - 11.0.0-rc.2.26426.126 - 11.0.0-rc.2.26426.126 + 11.0.0-beta.26427.118 + 3.0.0-rc.2.26427.118 + 11.0.0-rc.2.26427.118 + 11.0.0-rc.2.26427.118 + 11.0.0-rc.2.26427.118 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2c987cf0e4..fd54d52f71 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 100002779ceec649fcfd00c233f673b494130827 + b1fab8293ff883daf3489c5776ec6e207a2ddbfe - + https://github.com/dotnet/dotnet - 100002779ceec649fcfd00c233f673b494130827 + b1fab8293ff883daf3489c5776ec6e207a2ddbfe - + https://github.com/dotnet/dotnet - 100002779ceec649fcfd00c233f673b494130827 + b1fab8293ff883daf3489c5776ec6e207a2ddbfe - + https://github.com/dotnet/dotnet - 100002779ceec649fcfd00c233f673b494130827 + b1fab8293ff883daf3489c5776ec6e207a2ddbfe - + https://github.com/dotnet/dotnet - 100002779ceec649fcfd00c233f673b494130827 + b1fab8293ff883daf3489c5776ec6e207a2ddbfe diff --git a/global.json b/global.json index 6b446dca78..6bba3789a7 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26426.126", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26427.118", "Microsoft.Build.NoTargets": "3.7.0" } } From 4593647b6980fdb744002727b250097251478dbf Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Aug 2026 11:17:13 +0000 Subject: [PATCH 6/9] Update dependencies from build 329128 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26427.118 -> 11.0.0-beta.26427.127) System.CommandLine (Version 3.0.0-rc.2.26427.118 -> 3.0.0-rc.2.26427.127) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26427.118 -> 11.0.0-rc.2.26427.127) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index cae38bb4a8..5ddb3c4445 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26427.118 - 3.0.0-rc.2.26427.118 - 11.0.0-rc.2.26427.118 - 11.0.0-rc.2.26427.118 - 11.0.0-rc.2.26427.118 + 11.0.0-beta.26427.127 + 3.0.0-rc.2.26427.127 + 11.0.0-rc.2.26427.127 + 11.0.0-rc.2.26427.127 + 11.0.0-rc.2.26427.127 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fd54d52f71..7b2987c63d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - b1fab8293ff883daf3489c5776ec6e207a2ddbfe + fb84ad6786f66923632768b97128d7343ae4eae8 - + https://github.com/dotnet/dotnet - b1fab8293ff883daf3489c5776ec6e207a2ddbfe + fb84ad6786f66923632768b97128d7343ae4eae8 - + https://github.com/dotnet/dotnet - b1fab8293ff883daf3489c5776ec6e207a2ddbfe + fb84ad6786f66923632768b97128d7343ae4eae8 - + https://github.com/dotnet/dotnet - b1fab8293ff883daf3489c5776ec6e207a2ddbfe + fb84ad6786f66923632768b97128d7343ae4eae8 - + https://github.com/dotnet/dotnet - b1fab8293ff883daf3489c5776ec6e207a2ddbfe + fb84ad6786f66923632768b97128d7343ae4eae8 diff --git a/global.json b/global.json index 6bba3789a7..39d56cc6e1 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26427.118", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26427.127", "Microsoft.Build.NoTargets": "3.7.0" } } From 729c457195fae44b78b434d2c6528875a3c702e7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 29 Aug 2026 02:44:33 +0000 Subject: [PATCH 7/9] Update dependencies from build 329285 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26427.127 -> 11.0.0-beta.26428.114) System.CommandLine (Version 3.0.0-rc.2.26427.127 -> 3.0.0-rc.2.26428.114) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26427.127 -> 11.0.0-rc.2.26428.114) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 5ddb3c4445..1bab2ff639 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26427.127 - 3.0.0-rc.2.26427.127 - 11.0.0-rc.2.26427.127 - 11.0.0-rc.2.26427.127 - 11.0.0-rc.2.26427.127 + 11.0.0-beta.26428.114 + 3.0.0-rc.2.26428.114 + 11.0.0-rc.2.26428.114 + 11.0.0-rc.2.26428.114 + 11.0.0-rc.2.26428.114 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7b2987c63d..97fc8ec80d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - fb84ad6786f66923632768b97128d7343ae4eae8 + a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 - + https://github.com/dotnet/dotnet - fb84ad6786f66923632768b97128d7343ae4eae8 + a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 - + https://github.com/dotnet/dotnet - fb84ad6786f66923632768b97128d7343ae4eae8 + a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 - + https://github.com/dotnet/dotnet - fb84ad6786f66923632768b97128d7343ae4eae8 + a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 - + https://github.com/dotnet/dotnet - fb84ad6786f66923632768b97128d7343ae4eae8 + a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 diff --git a/global.json b/global.json index 39d56cc6e1..44b2cb4916 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26427.127", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26428.114", "Microsoft.Build.NoTargets": "3.7.0" } } From aa28cb2ec06615cfc9fac45912bd205582db1084 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 29 Aug 2026 17:28:15 +0000 Subject: [PATCH 8/9] Update dependencies from build 329326 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26428.114 -> 11.0.0-beta.26429.106) System.CommandLine (Version 3.0.0-rc.2.26428.114 -> 3.0.0-rc.2.26429.106) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26428.114 -> 11.0.0-rc.2.26429.106) [[ commit created by automation ]] --- eng/Version.Details.props | 10 ++++----- eng/Version.Details.xml | 22 +++++++++---------- .../core-templates/job/helix-job-monitor.yml | 8 +++++++ global.json | 2 +- 4 files changed, 25 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 1bab2ff639..49e7834995 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26428.114 - 3.0.0-rc.2.26428.114 - 11.0.0-rc.2.26428.114 - 11.0.0-rc.2.26428.114 - 11.0.0-rc.2.26428.114 + 11.0.0-beta.26429.106 + 3.0.0-rc.2.26429.106 + 11.0.0-rc.2.26429.106 + 11.0.0-rc.2.26429.106 + 11.0.0-rc.2.26429.106 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 97fc8ec80d..e1d8382b7b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 + 17974d44ef211135d3e9b0b84f5e03830dd59ad8 - + https://github.com/dotnet/dotnet - a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 + 17974d44ef211135d3e9b0b84f5e03830dd59ad8 - + https://github.com/dotnet/dotnet - a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 + 17974d44ef211135d3e9b0b84f5e03830dd59ad8 - + https://github.com/dotnet/dotnet - a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 + 17974d44ef211135d3e9b0b84f5e03830dd59ad8 - + https://github.com/dotnet/dotnet - a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 + 17974d44ef211135d3e9b0b84f5e03830dd59ad8 diff --git a/eng/common/core-templates/job/helix-job-monitor.yml b/eng/common/core-templates/job/helix-job-monitor.yml index 81ecccdd17..53bbf74927 100644 --- a/eng/common/core-templates/job/helix-job-monitor.yml +++ b/eng/common/core-templates/job/helix-job-monitor.yml @@ -62,6 +62,12 @@ parameters: type: number default: 30 +# Maximum number of work items whose results may be downloaded, parsed, and +# uploaded concurrently. +- name: testResultUploadParallelism + type: number + default: 48 + # 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. @@ -215,6 +221,8 @@ 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)' + --job-attempt '$(System.JobAttempt)' + --test-result-upload-parallelism '${{ parameters.testResultUploadParallelism }}' ) organization='${{ parameters.organization }}' diff --git a/global.json b/global.json index 44b2cb4916..643e86e4bd 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26428.114", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26429.106", "Microsoft.Build.NoTargets": "3.7.0" } } From 476840985c0eb1a9d3851f4698f07df4ebdd791b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 30 Aug 2026 03:24:40 +0000 Subject: [PATCH 9/9] Update dependencies from build 329351 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26429.106 -> 11.0.0-beta.26429.111) System.CommandLine (Version 3.0.0-rc.2.26429.106 -> 3.0.0-rc.2.26429.111) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26429.106 -> 11.0.0-rc.2.26429.111) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 49e7834995..de025a1cd9 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26429.106 - 3.0.0-rc.2.26429.106 - 11.0.0-rc.2.26429.106 - 11.0.0-rc.2.26429.106 - 11.0.0-rc.2.26429.106 + 11.0.0-beta.26429.111 + 3.0.0-rc.2.26429.111 + 11.0.0-rc.2.26429.111 + 11.0.0-rc.2.26429.111 + 11.0.0-rc.2.26429.111 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e1d8382b7b..222ad00efc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 17974d44ef211135d3e9b0b84f5e03830dd59ad8 + 6c102ec59fc1ae0ef44054cb4659daf828b96e8d - + https://github.com/dotnet/dotnet - 17974d44ef211135d3e9b0b84f5e03830dd59ad8 + 6c102ec59fc1ae0ef44054cb4659daf828b96e8d - + https://github.com/dotnet/dotnet - 17974d44ef211135d3e9b0b84f5e03830dd59ad8 + 6c102ec59fc1ae0ef44054cb4659daf828b96e8d - + https://github.com/dotnet/dotnet - 17974d44ef211135d3e9b0b84f5e03830dd59ad8 + 6c102ec59fc1ae0ef44054cb4659daf828b96e8d - + https://github.com/dotnet/dotnet - 17974d44ef211135d3e9b0b84f5e03830dd59ad8 + 6c102ec59fc1ae0ef44054cb4659daf828b96e8d diff --git a/global.json b/global.json index 643e86e4bd..5603c0c973 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26429.106", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26429.111", "Microsoft.Build.NoTargets": "3.7.0" } }