From 2e665150966036bda539c86a627c7724bd662e2c Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Wed, 18 Mar 2026 03:11:08 +0100 Subject: [PATCH] Invoke CTest directly This allows passing it arguments directly, like `--verbose` here (which is more appropriate for CI use). --- .github/workflows/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index d65def95..decb53dc 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -83,7 +83,7 @@ jobs: - name: Run tests using CTest if: matrix.buildsys == 'cmake' run: | - cmake --build build --target test + ctest --test-dir build --verbose macos-static: runs-on: macos-14 @@ -372,4 +372,4 @@ jobs: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=c++ -DTESTS_RUN_EXTERNAL=OFF -DTESTS_OS_NAME=freebsd cmake --build build -j4 --verbose cmake --install build --verbose - cmake --build build --target test + ctest --test-dir build --verbose