From 550bb4e4a6de5c33c481a5cee84140aed2db37d0 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Mon, 11 Mar 2024 17:08:55 +0900 Subject: [PATCH] ci: codecov: Set twister timeout multiplier to 2 This commit sets the codecov workflow twister timeout multiplier to 2, which effectively increases the default test timeout from 60 to 120 seconds, because the new cost-effective Zephyr runners may take longer to execute tests and the default timeout is not sufficient for some tests to complete. Signed-off-by: Stephanos Ioannidis --- .github/workflows/codecov.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml index d586dd8d63..47b3785a47 100644 --- a/.github/workflows/codecov.yaml +++ b/.github/workflows/codecov.yaml @@ -94,7 +94,10 @@ jobs: pip3 install gcovr==6.0 ./scripts/twister -E ${{matrix.normalized}}-testplan.json ls -la - ./scripts/twister -i --force-color -N -v --filter runnable -p ${{ matrix.platform }} --coverage -T tests --coverage-tool gcovr -xCONFIG_TEST_EXTRA_STACK_SIZE=4096 -e nano + ./scripts/twister \ + -i --force-color -N -v --filter runnable -p ${{ matrix.platform }} --coverage \ + -T tests --coverage-tool gcovr -xCONFIG_TEST_EXTRA_STACK_SIZE=4096 -e nano \ + --timeout-multiplier 2 - name: Print ccache stats if: always()