Skip to content

Commit

Permalink
nproc
Browse files Browse the repository at this point in the history
  • Loading branch information
liss-h committed Nov 29, 2024
1 parent f9b8582 commit deb63f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ jobs:
env:
CC: ${{ steps.install_cc.outputs.cc }}
CXX: ${{ steps.install_cc.outputs.cxx }}
run: cmake --build . --parallel 8
run: cmake --build . --parallel $(nproc)

- name: Run tests
id: run-tests
shell: bash
working-directory: build
run: ctest --verbose --parallel 8 --exclude-regex "(tests_RawHypertrieContext_systematic)|(tests_RawHypertrieContext_systematic_metall)|(tests_RawHypertrieContext_randomized_abort)|(tests_HypertrieContext_systematic_metall)|(tests_Einsum_metall)"
run: ctest --verbose --parallel $(nproc) --exclude-regex "(tests_RawHypertrieContext_systematic)|(tests_RawHypertrieContext_systematic_metall)|(tests_RawHypertrieContext_randomized_abort)|(tests_HypertrieContext_systematic_metall)|(tests_Einsum_metall)"

0 comments on commit deb63f2

Please sign in to comment.