From 911f9f96db40707142d40570a555009ea504a391 Mon Sep 17 00:00:00 2001 From: "Sarnie, Nick" Date: Fri, 15 Nov 2024 13:44:38 -0800 Subject: [PATCH] [CI] Windows test hang detection should always run Signed-off-by: Sarnie, Nick --- .github/workflows/sycl-windows-run-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sycl-windows-run-tests.yml b/.github/workflows/sycl-windows-run-tests.yml index 65c2df1290771..9186392f8fa46 100644 --- a/.github/workflows/sycl-windows-run-tests.yml +++ b/.github/workflows/sycl-windows-run-tests.yml @@ -88,6 +88,7 @@ jobs: cmake --build build-e2e --target check-sycl-e2e - name: Detect hung tests shell: powershell + if: always() run: | $exitCode = 0 $hungTests = Get-Process | Where-Object { ($_.Path -match "llvm\\install") -or ($_.Path -match "llvm\\build-e2e") }