From c2d51c6c39189852d5282ee901698499af575de5 Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Sat, 18 Oct 2025 23:21:33 +0200 Subject: [PATCH] ci: missing compiler flag DENABLE_BASIC_LOGGING for windows added --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10fc253..4d0e193 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,7 +114,7 @@ jobs: run: | mkdir bin call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=amd64 - cl /O2 src\coparun\runmem.c src\coparun\coparun.c src\coparun\mem_man.c /Fe:bin\coparun.exe + cl /DENABLE_BASIC_LOGGING /O2 src\coparun\runmem.c src\coparun\coparun.c src\coparun\mem_man.c /Fe:bin\coparun.exe - name: Run tests with pytest run: pytest @@ -129,4 +129,4 @@ jobs: if: strategy.job-index == 0 with: name: runner-win - path: bin/* \ No newline at end of file + path: bin/*