From ea9a38e2d3f82f51bc1f6e2fec85911572064a81 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Tue, 23 Mar 2021 23:05:38 -0600 Subject: Make DEBUGGING the default on CI for Windows This should help find things earlier/easier --- .github/workflows/testsuite.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index abcd3f0ca1..177b114f9d 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -362,7 +362,7 @@ jobs: run: | call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 cd win32 - nmake CCTYPE=MSVC142 + nmake CCTYPE=MSVC142 CFG=Debug - name: Show Config shell: cmd run: | @@ -373,7 +373,7 @@ jobs: run: | call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 cd win32 - nmake CCTYPE=MSVC142 test + nmake CCTYPE=MSVC142 CFG=Debug test # _ __ _ _ # _ __ ___ (_)_ __ __ ___ __/ /_ | || | @@ -412,7 +412,7 @@ jobs: shell: cmd run: | cd win32 - gmake CCHOME=C:\strawberry\c -f GNUMakefile -j2 + gmake CCHOME=C:\strawberry\c CFG=Debug -f GNUMakefile -j2 - name: Show Config shell: cmd run: | @@ -423,7 +423,7 @@ jobs: run: | cd win32 set HARNESS_OPTIONS=j2 - gmake CCHOME=C:\strawberry\c -f GNUMakefile test + gmake CCHOME=C:\strawberry\c CFG=Debug -f GNUMakefile test # _ # ___ _ _ __ ___ _(_)_ __ -- cgit v1.2.1