From 313ab5852fe7cc8ce43c2c4925cc04623c532722 Mon Sep 17 00:00:00 2001 From: Ralph Giles Date: Sat, 10 Jul 2021 21:31:21 -0700 Subject: github actions: Add dummy ctest config switch. This is required on windows, but not on other platforms. It needs to be the default `Debug` target, rather than `Release` to match CMAKE_BUILD_TYPE, for the $TARGET_FILE mapping to produce the correct path. See https://gitlab.kitware.com/cmake/cmake/-/issues/20283 --- .github/workflows/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index c7c8c3c5..b6d25321 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -173,7 +173,7 @@ jobs: CC: ${{ matrix.cc }} CXX: ${{ matrix.cxx }} working-directory: cmake-build - run: ctest -V + run: ctest -V -C Debug - name: Upload logs on failure uses: actions/upload-artifact@v2 -- cgit v1.2.1