Skip to content

Commit

Permalink
[actions] only pull required lfs files in build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lmnotran committed May 28, 2024
1 parent 30b4ef5 commit 1a062fc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,13 @@ jobs:
key: lfs-${{ hashFiles('.lfs-assets-id') }}

- name: Git LFS Pull
run: git -C third_party/silabs/gecko_sdk lfs pull
run: |
git -C third_party/silabs/gecko_sdk lfs pull \
--include 'platform/emdrv/nvm3/lib/libnvm3_*_gcc.a,
platform/radio/rail_lib/autogen/librail_release/librail_config_mgm*_gcc.a,
platform/radio/rail_lib/autogen/librail_release/librail_efr32xg*_gcc_release.a,
platform/radio/rail_lib/autogen/librail_release/librail_module_efr32xg*_gcc_release.a,
protocol/openthread/libs/libsl_openthread_efr32mg*x_gcc.a'
- name: Bootstrap ARM Toolchain
run: |
Expand Down

0 comments on commit 1a062fc

Please sign in to comment.