diff --git a/.github/workflows/ubuntu_arm.yml b/.github/workflows/ubuntu_arm.yml index 2c8a4c4..8fa587a 100644 --- a/.github/workflows/ubuntu_arm.yml +++ b/.github/workflows/ubuntu_arm.yml @@ -35,4 +35,4 @@ jobs: - name: Test working-directory: build - run: ctest --output-on-failure \ No newline at end of file + run: ctest -LE benchmark --output-on-failure \ No newline at end of file diff --git a/.github/workflows/ubuntu_riscv.yml b/.github/workflows/ubuntu_riscv.yml index d7cdb75..3b54b96 100644 --- a/.github/workflows/ubuntu_riscv.yml +++ b/.github/workflows/ubuntu_riscv.yml @@ -35,4 +35,4 @@ jobs: - name: Test working-directory: build - run: ctest --output-on-failure \ No newline at end of file + run: ctest -LE benchmark --output-on-failure \ No newline at end of file diff --git a/.github/workflows/windows_arm.yml b/.github/workflows/windows_arm.yml index 8bca21a..4d7f4d9 100644 --- a/.github/workflows/windows_arm.yml +++ b/.github/workflows/windows_arm.yml @@ -80,4 +80,4 @@ jobs: - name: Test working-directory: build - run: ctest --output-on-failure -C Release \ No newline at end of file + run: ctest -LE benchmark --output-on-failure -C Release \ No newline at end of file diff --git a/.github/workflows/windows_x86_64.yml b/.github/workflows/windows_x86_64.yml index d467e83..2c17f86 100644 --- a/.github/workflows/windows_x86_64.yml +++ b/.github/workflows/windows_x86_64.yml @@ -81,7 +81,7 @@ jobs: - name: Test working-directory: build - run: ctest --output-on-failure -C ${{ env.BUILD_TYPE }} + run: ctest -LE benchmark --output-on-failure -C ${{ env.BUILD_TYPE }} - name: Diagnostics if build fails if: failure()