From d4f00144e4f25871fad49214ebd569327cf636d9 Mon Sep 17 00:00:00 2001 From: fintarin Date: Sun, 14 Jul 2024 11:19:50 +0400 Subject: [PATCH] Remove -C in ctests command --- .github/workflows/build.yml | 2 +- .github/workflows/sanitizer.yml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f3642d4c..5b0a203a5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -171,4 +171,4 @@ jobs: - name: Test working-directory: ${{github.workspace}}/build - run: ctest -C${{matrix.config.build-type}} --output-on-failure + run: ctest --output-on-failure diff --git a/.github/workflows/sanitizer.yml b/.github/workflows/sanitizer.yml index abded3ce9..223a7e43a 100644 --- a/.github/workflows/sanitizer.yml +++ b/.github/workflows/sanitizer.yml @@ -43,4 +43,4 @@ jobs: - name: Test working-directory: ${{github.workspace}}/build - run: ctest -C${{env.BUILD_TYPE}} --output-on-failure + run: ctest --output-on-failure diff --git a/README.md b/README.md index 06cef62ff..8007570f5 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ Run tests. ```sh cd build -ctest -CDEBUG --verbose +ctest --verbose cd .. ```