From b79f84c6c6adc309f106340f26bf81a304f184c0 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 22 Apr 2026 13:05:37 +0200 Subject: [PATCH] [devops] Add a timeout to the 'Publish to Artifact Services Drop' step. This step has taken to hanging recently, and it'll hang until the job's timeout of 3 hours is hit, at which point it'll mark the entire job as failed. So add a timeout just for this step, so that it can timeout by itself, and then the job can finish successfully. --- tools/devops/automation/templates/mac/build.yml | 1 + tools/devops/automation/templates/tests/run-tests.yml | 1 + tools/devops/automation/templates/windows/build.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/tools/devops/automation/templates/mac/build.yml b/tools/devops/automation/templates/mac/build.yml index fd4bcfacc0c4..a6c20308996f 100644 --- a/tools/devops/automation/templates/mac/build.yml +++ b/tools/devops/automation/templates/mac/build.yml @@ -219,6 +219,7 @@ steps: sourcePath: '$(BUILD_REPOSITORY_TITLE)/jenkins-results' detailedLog: true usePat: true + timeoutInMinutes: 30 continueOnError: true condition: succeededOrFailed() diff --git a/tools/devops/automation/templates/tests/run-tests.yml b/tools/devops/automation/templates/tests/run-tests.yml index 0e925c2505b3..55f5d8d5a7be 100644 --- a/tools/devops/automation/templates/tests/run-tests.yml +++ b/tools/devops/automation/templates/tests/run-tests.yml @@ -191,6 +191,7 @@ steps: sourcePath: '$(BUILD_REPOSITORY_TITLE)/jenkins-results' detailedLog: true usePat: true + timeoutInMinutes: 30 continueOnError: true condition: succeededOrFailed() diff --git a/tools/devops/automation/templates/windows/build.yml b/tools/devops/automation/templates/windows/build.yml index a3ee0e1ed478..7145baec4ee5 100644 --- a/tools/devops/automation/templates/windows/build.yml +++ b/tools/devops/automation/templates/windows/build.yml @@ -353,6 +353,7 @@ steps: sourcePath: '$(BUILD_REPOSITORY_TITLE)/jenkins-results' detailedLog: true usePat: true + timeoutInMinutes: 30 continueOnError: true condition: succeededOrFailed()