From b4762701d5b8d1a2e6924a21cbbe64e8fdebb1eb Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 19 Nov 2024 08:05:30 -0500 Subject: [PATCH] [nrf fromtree] ci: do not pull babblesim in twister test workflow No need to pull babblesim and nrf_hw_models when doing twister testing. Signed-off-by: Anas Nashif (cherry picked from commit cfd5469dc14316e1f80940447b0689b108bc94d2) --- .github/workflows/twister_tests_blackbox.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/twister_tests_blackbox.yml b/.github/workflows/twister_tests_blackbox.yml index 8845c7eddd4..b19bce0c535 100644 --- a/.github/workflows/twister_tests_blackbox.yml +++ b/.github/workflows/twister_tests_blackbox.yml @@ -44,7 +44,8 @@ jobs: west init -l . || true # we do not depend on any hals, tools or bootloader, save some time and space... - west config manifest.group-filter -- -hal,-tools,-bootloader + west config manifest.group-filter -- -hal,-tools,-bootloader,-babblesim + west config manifest.project-filter -- -nrf_hw_models west config --global update.narrow true west update --path-cache /github/cache/zephyrproject 2>&1 1> west.update.log || west update --path-cache /github/cache/zephyrproject 2>&1 1> west.update.log || ( rm -rf ../modules ../bootloader ../tools && west update --path-cache /github/cache/zephyrproject) west forall -c 'git reset --hard HEAD'