From 5a7dcbc757a3cc44af313b414467d164cb149131 Mon Sep 17 00:00:00 2001 From: Vlad Gheorghiu Date: Wed, 1 May 2024 17:57:48 -0400 Subject: [PATCH] Final final fix Signed-off-by: Vlad Gheorghiu --- .github/workflows/cmake.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index fe15a8c..1b76ada 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -100,9 +100,14 @@ jobs: - name: Run unit tests run: ctest --test-dir build - - name: Uninstall + - name: Uninstall staq + shell: bash run: | - cmake --build build --target uninstall + if [ "$RUNNER_OS" == "Windows" ]; then + cmake --build build --target uninstall + else + sudo cmake --build build --target uninstall + fi - name: Install pystaq shell: bash