Skip to content

Commit

Permalink
Final final fix
Browse files Browse the repository at this point in the history
Signed-off-by: Vlad Gheorghiu <[email protected]>
  • Loading branch information
vsoftco committed May 1, 2024
1 parent 982268c commit 5a7dcbc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5a7dcbc

Please sign in to comment.