From abe532dd2f7b9931a75f5c2a0925b09a2bfae730 Mon Sep 17 00:00:00 2001 From: Samson <16504129+sagudev@users.noreply.github.com> Date: Wed, 4 Sep 2024 10:23:40 +0200 Subject: [PATCH] CI: Force github hosted runners and remove concurrency on select-runner job (#33308) temporary fix for #33276 Signed-off-by: Samson <16504129+sagudev@users.noreply.github.com> --- .github/workflows/windows.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 8f5a3f438e0..86cb5e24cc4 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -61,9 +61,9 @@ jobs: unique-id: ${{ steps.select.outputs.unique_id }} selected-runner-label: ${{ steps.select.outputs.selected_runner_label }} is-self-hosted: ${{ steps.select.outputs.is_self_hosted }} - concurrency: - group: servo-reserve-self-hosted-runner - cancel-in-progress: false + #concurrency: + # group: servo-reserve-self-hosted-runner + # cancel-in-progress: false permissions: write-all steps: - name: Select and reserve best available runner @@ -83,6 +83,9 @@ jobs: exit 0 } + echo 'forced github hosted runners!' + fall_back_to_github_hosted + # Generate a unique id that allows the workload job to find the runner # we are reserving for it (via runner labels), and allows the timeout # job to find the workload job run (via the job’s friendly name), even