Skip to content

Commit 268aaad

Browse files
[CI] Move auxilliary tasks from cuda to Linux/build runners (#10074)
We are going to re-build the cuda runner, need to ensure CI continues working while it will be offline. The move is also good by itself as there was nothing cuda-specific in those tasks.
1 parent 9fcb2ac commit 268aaad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/sycl_detect_changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Decide which tests could be affected by the changes
1313
# Github's ubuntu-* runners are slow to allocate. Use our CUDA runner since
1414
# we don't use it for anything right now.
15-
runs-on: cuda
15+
runs-on: [Linux, build]
1616
timeout-minutes: 3
1717
outputs:
1818
filters: ${{ steps.changes.outputs.changes }}

.github/workflows/sycl_gen_test_matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
name: Generate Test Matrix
5252
# Github's ubuntu-* runner are slow to allocate. Use our CUDA runner since
5353
# we don't use it for anything right now.
54-
runs-on: cuda
54+
runs-on: [Linux, build]
5555
outputs:
5656
lts_lx_matrix: ${{ steps.work.outputs.lts_lx_matrix }}
5757
lts_wn_matrix: ${{ steps.work.outputs.lts_wn_matrix }}

.github/workflows/sycl_precommit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
needs: [detect_changes]
3030
if: |
3131
!contains(needs.detect_changes.outputs.filters, 'ci')
32-
runs-on: cuda
32+
runs-on: [Linux, build]
3333
container:
3434
image: ghcr.io/intel/llvm/sycl_ubuntu2204_nightly:no-drivers
3535
# actions/checkout fails without "--privileged".

0 commit comments

Comments
 (0)