Skip to content

Commit

Permalink
chore: Reduce test parallelism to 10 in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Tradias committed Dec 15, 2024
1 parent 23e9f1d commit 24f9dae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
env:
VCPKG_VERSION: '9d196b217c8f435b90e8608753609c58c24faed1'
CMAKE_ARGS: '-DCMAKE_BUILD_TYPE=Release -DVCPKG_MANIFEST_INSTALL=off -DASIO_GRPC_ENABLE_PKGCONFIG_FALLBACK=off -DCMAKE_COMPILE_WARNING_AS_ERROR=on -DCMAKE_FIND_PACKAGE_PREFER_CONFIG=on -DTHREADS_PREFER_PTHREAD_FLAG=on -DCMAKE_UNITY_BUILD=on'
CTEST_ARGS: '-T test --output-on-failure --timeout 180 --no-tests=error --parallel 25'
CTEST_ARGS: '-T test --output-on-failure --timeout 180 --no-tests=error --parallel 10'

jobs:
build:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
run: cmake --build --preset default --config ${{ matrix.config.build-type }} --parallel ${{ matrix.config.parallel }}

- name: Test
run: ctest --preset default --parallel 25 -C ${{ matrix.config.build-type }}
run: ctest --preset default --parallel 10 -C ${{ matrix.config.build-type }}


gcc-8-build:
Expand Down

0 comments on commit 24f9dae

Please sign in to comment.