From 733452a3f6338ed8aea5c80ecc4df16edc4b1a8b Mon Sep 17 00:00:00 2001 From: Johannes Frank Date: Sat, 3 Feb 2024 20:09:25 +0700 Subject: [PATCH] Skip test under windows --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28dc33c7..7fa9b970 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,9 @@ all: cmake -Bbuild -DCMAKE_INSTALL_PREFIX=install cmake --build build --config Release - cd build && ctest --config Release + @if [ "$(OS)" != "Windows_NT" ]; then \ + cd build && ctest --config Release; \ + fi cmake --install build docker: