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