From 1a062fc052526424eff3a3726c96d04b8494d031 Mon Sep 17 00:00:00 2001 From: Mason Tran Date: Tue, 28 May 2024 16:07:31 -0400 Subject: [PATCH] [actions] only pull required lfs files in build workflow --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90d97014..ac15f926 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: |