Skip to content

Commit

Permalink
fix: ctest excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed Nov 27, 2023
1 parent 3ca2284 commit 7757f39
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Run Tests
working-directory: ${{github.workspace}}/build
# Run all tests that are not labeled as benchmark
run: ctest -LE '^benchmark$'
run: ctest -E "Benchmark|Performance"

- name: Trigger Action on ViennaPS Repository
if: ${{ vars.TRIGGER_VIENNAPS == 'true' && github.event_name != 'schedule' && github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Run Tests
working-directory: ${{github.workspace}}/build
# Run all tests that are not labeled as benchmark
run: ctest -LE '^benchmark$'
run: ctest -E "Benchmark|Performance"

- name: Trigger Action on ViennaPS Repository
if: ${{ vars.TRIGGER_VIENNAPS == 'true' && github.event_name != 'schedule' && github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Run Tests
working-directory: ${{github.workspace}}/build
# Run all tests except those that are labeled as benchmark
run: ctest -LE "^benchmark$" -j 2 --output-on-failure --timeout 1800 -C ${{env.BUILD_TYPE}}
run: ctest -E "Benchmark|Performance" -j 2 --output-on-failure --timeout 1800 -C ${{env.BUILD_TYPE}}

- name: Trigger Action on ViennaPS Repository
if: ${{ vars.TRIGGER_VIENNAPS == 'true' && github.event_name != 'schedule' && github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ cd ViennaLS

cmake -B build -DVIENNALS_BUILD_TESTS=ON
cmake --build build
ctest -LE '^benchmark$' --test-dir build
ctest -E "Benchmark|Performance" --test-dir build
```

## Building examples
Expand Down

0 comments on commit 7757f39

Please sign in to comment.