From 1ef5561744f100e99201adb4903c4fe10f846a1d Mon Sep 17 00:00:00 2001 From: Mohammad Nejati Date: Mon, 30 Jun 2025 11:13:25 +0000 Subject: [PATCH] Update ci.yml Running tests in parallel results in sporadic failures in `test_xml_parser_rapidxml`. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a54ebc221..6bd9d914d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -251,7 +251,7 @@ jobs: - name: Run tests run: | cd ../boost-root - ./b2 libs/$LIBRARY/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} variant=debug,release + ./b2 -j1 libs/$LIBRARY/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} variant=debug,release windows: strategy: @@ -311,7 +311,7 @@ jobs: shell: cmd run: | cd ../boost-root - b2 --abbreviate-paths libs/%LIBRARY%/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} address-model=${{matrix.addrmd}} ${{matrix.cxxflags}} variant=debug,release embed-manifest-via=linker + b2 -j1 --abbreviate-paths libs/%LIBRARY%/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} address-model=${{matrix.addrmd}} ${{matrix.cxxflags}} variant=debug,release embed-manifest-via=linker posix-cmake-subdir: strategy: