@@ -24,29 +24,29 @@ jobs:
2424 git submodule update --init --depth 1 --jobs 4 -- lib/micropython
2525 git submodule update --init --depth 1 --jobs 4 -- lib/lvgl
2626
27- -name :Cached Deps
28- id :cache-deps
29- uses :actions/cache@v4
30- with :
31- path :|
32- lib/esp-idf
33- ~/.espressif
34- key :${{ runner.os }}-v4-deps
35-
36- -name :Get Build Deps
37- if :steps.cache-deps.outputs.cache-hit != 'true'
38- run :|
39- git submodule update --init --depth 1 --jobs 4 -- lib/esp-idf
40- cd lib/esp-idf
41- git submodule update --init --depth 1 --jobs 4 -- components/bt/host/nimble/nimble components/esp_wifi components/esptool_py/esptool components/lwip/lwip components/mbedtls/mbedtls components/bt/controller/lib_esp32 components/bt/controller/lib_esp32c3_family
42- cd ../..
43- export "IDF_PATH=${GITHUB_WORKSPACE}/lib/esp-idf"
44- ./lib/esp-idf/install.sh all
45-
46- -name :Setup ESP-IDF
47- run :|
48- export "IDF_PATH=${GITHUB_WORKSPACE}/lib/esp-idf"
49- . ./lib/esp-idf/export.sh
27+ # - name: Cached Deps
28+ # id: cache-deps
29+ # uses: actions/cache@v4
30+ # with:
31+ # path: |
32+ # lib/esp-idf
33+ # ~/.espressif
34+ # key: ${{ runner.os }}-v4-deps
35+
36+ # - name: Get Build Deps
37+ # if: steps.cache-deps.outputs.cache-hit != 'true'
38+ # run: |
39+ # git submodule update --init --depth 1 --jobs 4 -- lib/esp-idf
40+ # cd lib/esp-idf
41+ # git submodule update --init --depth 1 --jobs 4 -- components/bt/host/nimble/nimble components/esp_wifi components/esptool_py/esptool components/lwip/lwip components/mbedtls/mbedtls components/bt/controller/lib_esp32 components/bt/controller/lib_esp32c3_family
42+ # cd ../..
43+ # export "IDF_PATH=${GITHUB_WORKSPACE}/lib/esp-idf"
44+ # ./lib/esp-idf/install.sh all
45+
46+ # - name: Setup ESP-IDF
47+ # run: |
48+ # export "IDF_PATH=${GITHUB_WORKSPACE}/lib/esp-idf"
49+ # . ./lib/esp-idf/export.sh
5050
5151 -name :Build ESP32_GENERIC_S3 4
5252run :python3 make.py esp32 BOARD=ESP32_GENERIC_S3 DISPLAY=all INDEV=all EXPANDER=all --ccache --no-scrub