From 99d3ce4093d0a9b697f7ce02fc4543dd059b6dc8 Mon Sep 17 00:00:00 2001 From: Nick Sarnie Date: Tue, 11 Jun 2024 11:01:19 -0400 Subject: [PATCH] [CI] Allow aux CUDA jobs to run on more machines (#14124) We have limited build systems and these tasks can run on basically any Linux hardware. Right now sometimes I have to wait over an hour for `update-check` to run even after that actual task that runs on the GPU succeeds. Signed-off-by: Sarnie, Nick --- .github/workflows/sycl-linux-precommit-aws.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sycl-linux-precommit-aws.yml b/.github/workflows/sycl-linux-precommit-aws.yml index 4117b3465a3e3..990fb89dcaca8 100644 --- a/.github/workflows/sycl-linux-precommit-aws.yml +++ b/.github/workflows/sycl-linux-precommit-aws.yml @@ -19,7 +19,7 @@ permissions: jobs: create-check: - runs-on: [Linux, build] + runs-on: [Linux, aux-tasks] permissions: checks: write statuses: write @@ -79,7 +79,7 @@ jobs: update-check: needs: [create-check, e2e-cuda] if: always() - runs-on: [Linux, build] + runs-on: [Linux, aux-tasks] permissions: checks: write statuses: write