From 485221047281e3d47f7376394667b85a63173991 Mon Sep 17 00:00:00 2001 From: aelovikov-intel Date: Wed, 7 Jun 2023 08:48:04 -0700 Subject: [PATCH] [CI] Generate test matrix on self-hosted runner (#9773) Github's ubuntu-* runners could take multiple hours to allocate in our organization. Switch to our self-hosted cuda runner that is sitting idle because we perform CUDA testing in AWS. --- .github/workflows/sycl_gen_test_matrix.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sycl_gen_test_matrix.yml b/.github/workflows/sycl_gen_test_matrix.yml index 824a13643f670..04374e305f972 100644 --- a/.github/workflows/sycl_gen_test_matrix.yml +++ b/.github/workflows/sycl_gen_test_matrix.yml @@ -49,7 +49,9 @@ on: jobs: test_matrix: name: Generate Test Matrix - runs-on: ubuntu-20.04 + # Github's ubuntu-* runner are slow to allocate. Use our CUDA runner since + # we don't use it for anything right now. + runs-on: cuda outputs: lts_lx_matrix: ${{ steps.work.outputs.lts_lx_matrix }} lts_wn_matrix: ${{ steps.work.outputs.lts_wn_matrix }}