From 487f05c90ab178cc45362b80f4f09e3b46e4133b Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Sun, 26 Jun 2022 19:33:43 -0700 Subject: [PATCH] Pass config to ctest for windows --- .github/workflows/python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 5de0e1f..d5f4477 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -50,12 +50,12 @@ jobs: - name: Build C code run: | ls - cmake -S . -B build -DQUICKTEX_NOPYTHON=TRUE + cmake -S . -B build -DQUICKTEX_NOPYTHON=TRUE -DCMAKE_BUILD_TYPE=Debug cmake --build build - name: Test C code run: | - ctest -V --test-dir build + ctest -V --test-dir build -C Debug build-sdist: name: Build SDist