From 051de6ed3bd601acdcce1b56f9bb8251e657d3c5 Mon Sep 17 00:00:00 2001 From: rturrado <68099809+rturrado@users.noreply.github.com> Date: Wed, 20 Dec 2023 20:29:21 +0100 Subject: [PATCH] Add '--parallel 10' option to ctest command. --- .github/actions/cpp-tests/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/cpp-tests/action.yaml b/.github/actions/cpp-tests/action.yaml index 063f45746..a6e72ab03 100644 --- a/.github/actions/cpp-tests/action.yaml +++ b/.github/actions/cpp-tests/action.yaml @@ -32,5 +32,5 @@ runs: shell: ${{ inputs.shell }} - name: Test working-directory: build/${{ inputs.build_type }} - run: ctest -C ${{ inputs.build_type }} --output-on-failure + run: ctest -C ${{ inputs.build_type }} --output-on-failure --parallel 10 shell: ${{ inputs.shell }}