Skip to content

Commit

Permalink
CI: Zephyr: Only fetch needed branches instead of everything
Browse files Browse the repository at this point in the history
Have west only fetch the needed branches instead of doing
a full clone of all repositories.

Signed-off-by: Alberto Escolar Piedras <[email protected]>
  • Loading branch information
aescolar committed Oct 15, 2023
1 parent e0f064f commit 62998a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/build_ci/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ build_zephyr(){
yes | ./$ZEPHYR_SDK_SETUP_DIR/setup.sh || exit 1
west init ./zephyrproject || exit 1
cd ./zephyrproject || exit 1
west update || exit 1
west update --narrow || exit 1
west zephyr-export || exit 1
pip3 install --user -r ./zephyr/scripts/requirements.txt || exit 1

Expand Down

0 comments on commit 62998a6

Please sign in to comment.