Skip to content

Commit

Permalink
GitHub Actions: Fix cmake/ctest parallel jobs argument
Browse files Browse the repository at this point in the history
* .github/workflows/cmake.yml
  (run_all_tests): Confusingly, the long form of -j argument isn't --jobs,
   it's parallel, so let's use that.

Review by: rinrab


git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1922263 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
hartmannathan committed Dec 2, 2024
1 parent ae29c4b commit 6f372e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
id: run_all_tests
if: matrix.run_tests
working-directory: out
run: ctest --output-on-failure --verbose -C Release --jobs 16
run: ctest --output-on-failure --verbose -C Release --parallel 16

- name: Rerun failed tests
if: ${{ matrix.run_tests && failure() && steps.run_all_tests.conclusion == 'failure' }}
Expand Down

0 comments on commit 6f372e8

Please sign in to comment.