From 5dd6f148e2ddd334c6cd4d933b1f1ad6a9978865 Mon Sep 17 00:00:00 2001 From: Milos Kotlar Date: Wed, 13 May 2026 17:17:32 +0200 Subject: [PATCH] Raise build-stage timeout to 360m for CoreCLR outer-loop windows-arm64 cross-builds Fixes #127987 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- eng/pipelines/coreclr/crossgen2.yml | 2 ++ eng/pipelines/coreclr/gcstress0x3-gcstress0xc.yml | 2 ++ eng/pipelines/coreclr/r2r.yml | 2 ++ eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml | 2 ++ 4 files changed, 8 insertions(+) diff --git a/eng/pipelines/coreclr/crossgen2.yml b/eng/pipelines/coreclr/crossgen2.yml index 775928f7d3ffc2..96508dd6ca2ab6 100644 --- a/eng/pipelines/coreclr/crossgen2.yml +++ b/eng/pipelines/coreclr/crossgen2.yml @@ -31,6 +31,8 @@ extends: - windows_x64 - windows_arm64 jobParameters: + # Windows-arm64 checked cross-build needs more than the default 60m AzDO job timeout. + timeoutInMinutes: 360 buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release postBuildSteps: - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml diff --git a/eng/pipelines/coreclr/gcstress0x3-gcstress0xc.yml b/eng/pipelines/coreclr/gcstress0x3-gcstress0xc.yml index fceaa51d56310c..919603b8d256da 100644 --- a/eng/pipelines/coreclr/gcstress0x3-gcstress0xc.yml +++ b/eng/pipelines/coreclr/gcstress0x3-gcstress0xc.yml @@ -29,6 +29,8 @@ extends: # Adding it here will enable it also - osx_arm64 jobParameters: + # Windows-arm64 checked cross-build needs more than the default 60m AzDO job timeout. + timeoutInMinutes: 360 buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release postBuildSteps: - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml diff --git a/eng/pipelines/coreclr/r2r.yml b/eng/pipelines/coreclr/r2r.yml index 8ed90b3ddfec1e..8f2f4fcf65d173 100644 --- a/eng/pipelines/coreclr/r2r.yml +++ b/eng/pipelines/coreclr/r2r.yml @@ -32,6 +32,8 @@ extends: - windows_x64 - windows_x86 jobParameters: + # Windows-arm64 checked cross-build needs more than the default 60m AzDO job timeout. + timeoutInMinutes: 360 buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release postBuildSteps: - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml diff --git a/eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml b/eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml index 41bea22cbb7f11..e9c0ac0607bfe8 100644 --- a/eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml +++ b/eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml @@ -21,6 +21,8 @@ extends: buildConfig: checked platforms: ${{ parameters.platforms }} jobParameters: + # Windows-arm64 checked cross-build needs more than the default 60m AzDO job timeout. + timeoutInMinutes: 360 buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release postBuildSteps: - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml