Skip to content

Commit 692c1d6

Browse files
authored
[CI] Allow detect changes and detect Arc tests to run on more Linux machines (#13992)
Even the Windows detect changes job requires a Linux build machine today, and that can cause a bottleneck. We may still get bottlenecked in the Linux tree because of the low number of Linux build systems, but there are more Windows build systems, so that tree might see a speedup. We can hit a similar thing for the determine arc tests job, so update that too. Also remove a comment that seems out of date. --------- Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 1d24713 commit 692c1d6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/sycl-detect-changes.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ permissions: read-all
1212
jobs:
1313
need_check:
1414
name: Decide which tests could be affected by the changes
15-
# Github's ubuntu-* runners are slow to allocate. Use our CUDA runner since
16-
# we don't use it for anything right now.
17-
runs-on: [Linux, build]
15+
runs-on: [Linux, aux-tasks]
1816
timeout-minutes: 3
1917
outputs:
2018
filters: ${{ steps.result.outputs.result }}

.github/workflows/sycl-linux-precommit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
name: Decide which Arc tests to run
5252
needs: [build, detect_changes]
5353
if: ${{ always() && !cancelled() && needs.build.outputs.build_conclusion == 'success' }}
54-
runs-on: [Linux, build]
54+
runs-on: [Linux, aux-tasks]
5555
timeout-minutes: 3
5656
outputs:
5757
arc_tests: ${{ steps.arc_tests.outputs.arc_tests }}

0 commit comments

Comments
 (0)