From 8dfbca597edc142bfbd7a9651e2c9c4a9f6876ea Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Fri, 20 Sep 2024 11:21:32 +0200 Subject: [PATCH] CI: Improvement to speed up compilation and reduce download errors. The simple improvement is designed to speed up compilation and reduce download errors on github and local. .github\workflows\build.yml: Added -S option. Enable storaged to the nxtmpdir folder for third-party packages. For now I added in the folder this package ESP_HAL_3RDPARTY_URL = https://github.com/espressif/esp-hal-3rdparty.git ARCH arch/xtensa/src/esp32/Make.defs arch/xtensa/src/esp32s2/Make.defs arch/xtensa/src/esp32s3/Make.defs arch/risc-v/src/common/espressif/Make.defs arch/risc-v/src/esp32c3-legacy/Make.defs but you can also add other packages. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90103e263aa..075c3db1f0c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -157,7 +157,7 @@ jobs: if [ "X${{matrix.boards}}" = "Xcodechecker" ]; then ./cibuild.sh -c -A -N -R --codechecker testlist/${{matrix.boards}}.dat else - ./cibuild.sh -c -A -N -R testlist/${{matrix.boards}}.dat + ./cibuild.sh -c -A -N -R -S testlist/${{matrix.boards}}.dat fi - uses: actions/upload-artifact@v4