From 26dd1fafe3371624e2ea9ec0def4b8042c6ca115 Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Wed, 4 Feb 2026 11:28:24 +0000 Subject: [PATCH] run parallel tests Signed-off-by: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> --- .github/workflows/reusable-build-test-config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-build-test-config.yml b/.github/workflows/reusable-build-test-config.yml index 568982d4b1..5ea4cc4405 100644 --- a/.github/workflows/reusable-build-test-config.yml +++ b/.github/workflows/reusable-build-test-config.yml @@ -224,7 +224,8 @@ jobs: run: | ctest \ --output-on-failure \ - -C "${BUILD_TYPE}" + -C "${BUILD_TYPE}" \ + -j "${PARALLELISM}" - name: Run the embedded tests if: ${{ !inputs.build_only }} @@ -232,7 +233,7 @@ jobs: env: BUILD_NPROC: ${{ steps.nproc.outputs.nproc }} run: | - ./xrpld --unittest + ./xrpld --unittest --unittest-jobs "${BUILD_NPROC}" # Pipeline should fail if the separate tests failed. - name: Check results of the SeparateTests