From 8304fd46cf7b129b58330c7cc5be8631b927723a Mon Sep 17 00:00:00 2001 From: Nick Sarnie Date: Thu, 15 Aug 2024 16:27:21 +0000 Subject: [PATCH] [CI] Fix Nightly Windows E2E testing (#15095) This typo caused the job to always get skipped. Confirmed this fixes it [here](https://github.com/intel/llvm/actions/runs/10405372513/job/28818960269) compared to [before](https://github.com/intel/llvm/actions/runs/10398087484/job/28796039560). Signed-off-by: Sarnie, Nick --- .github/workflows/sycl-nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sycl-nightly.yml b/.github/workflows/sycl-nightly.yml index 1b921e21adc64..24667cf57492a 100644 --- a/.github/workflows/sycl-nightly.yml +++ b/.github/workflows/sycl-nightly.yml @@ -120,7 +120,7 @@ jobs: if: | always() && !cancelled() - && needs.build.outputs.build_conclusion == 'success' + && needs.build-win.outputs.build_conclusion == 'success' uses: ./.github/workflows/sycl-windows-run-tests.yml with: name: Intel GEN12 Graphics with Level Zero