From bae25fc5686f375a12a1e26f5ed93e6b1af69895 Mon Sep 17 00:00:00 2001 From: Julien Cretin Date: Tue, 23 Jul 2024 10:17:19 +0200 Subject: [PATCH] Increase CI tests parallelism from 3 to 4 (#541) --- .github/actions/ci-checks/action.yml | 9 ++++++--- .github/workflows/ci.yml | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/actions/ci-checks/action.yml b/.github/actions/ci-checks/action.yml index a97190fb..e3376ca3 100644 --- a/.github/actions/ci-checks/action.yml +++ b/.github/actions/ci-checks/action.yml @@ -57,13 +57,16 @@ runs: run: ./scripts/ci-runners.sh shell: bash - if: ${{ contains(fromJSON(inputs.checks), 'tests-0') }} - run: ./scripts/ci-tests.sh 0 3 + run: ./scripts/ci-tests.sh 0 4 shell: bash - if: ${{ contains(fromJSON(inputs.checks), 'tests-1') }} - run: ./scripts/ci-tests.sh 1 3 + run: ./scripts/ci-tests.sh 1 4 shell: bash - if: ${{ contains(fromJSON(inputs.checks), 'tests-2') }} - run: ./scripts/ci-tests.sh 2 3 + run: ./scripts/ci-tests.sh 2 4 + shell: bash + - if: ${{ contains(fromJSON(inputs.checks), 'tests-3') }} + run: ./scripts/ci-tests.sh 3 4 shell: bash - if: ${{ contains(fromJSON(inputs.checks), 'hw-host') }} run: ./scripts/hwci.sh host --no-default-features diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0381ac3e..218d60ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,6 +43,7 @@ jobs: x tests-0 pull_request push schedule x tests-1 pull_request push schedule x tests-2 pull_request push schedule + x tests-3 pull_request push schedule x hw-host pull_request push schedule x book pull_request push schedule x footprint pull_request push