From 93fdaf79e66995dfee341d63144da2faea4d6343 Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Wed, 12 Apr 2023 18:57:39 +0200 Subject: [PATCH] CI: Kill tasks forcefully on Windows Otherwise we get the following error: ERROR: The process with PID 5192 (child process of PID 1372) could not be terminated. Reason: This process can only be terminated forcefully (with /F option). --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index fc511dda..f1d1f523 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -418,7 +418,7 @@ jobs: - name: Smoke Test Cleanup ( QSkinny ) on Windows if: startsWith(matrix.config.name, 'Windows') run: | - taskkill /IM iotdashboard.exe /T + taskkill /IM iotdashboard.exe /T /F - name: Smoke Test Cleanup ( QSkinny ) on MacOS if: startsWith(matrix.config.name, 'macOS')