From b23445e1c3067f21b9366c604acafcff0f1ef79c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 12 Jun 2025 22:00:28 -0500 Subject: [PATCH] lock --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8266c0e403..ffeb49ee55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -430,9 +430,8 @@ jobs: . venv/bin/activate mkdir -p build_cache export PLATFORMIO_BUILD_CACHE_DIR=$PWD/build_cache - # Use sequential compilation to avoid race conditions - # PlatformIO handles its own parallelization internally - ./script/test_build_components -e compile -c ${{ matrix.file }} -j 1 -f -b $PWD/build_cache + # Use 2 parallel jobs for compilation (resource intensive) + ./script/test_build_components -e compile -c ${{ matrix.file }} -j 2 -f -b $PWD/build_cache test-build-components-splitter: name: Split components for testing into 20 groups maximum