File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,19 @@ jobs:
33
33
- name : Get Build Deps
34
34
if : steps.cache-deps.outputs.cache-hit != 'true'
35
35
run : |
36
- git submodule update --init lib/pycparser lib/micropython lib/esp-idf lib/lvgl lib/SDL
36
+ git submodule update --init lib/pycparser
37
+
38
+ git submodule update --init -- lib/micropython
37
39
cd lib/micropython && git checkout v1.23.0 && cd ../..
40
+
41
+ git submodule update --init -- lib/lvgl
38
42
cd lib/lvgl && git checkout master && cd ../..
43
+
44
+ git submodule update --init -- lib/SDL
39
45
cd lib/SDL && git checkout release-2.30.2 && cd ../..
40
46
47
+ git submodule update --init --recursive -- lib/esp-idf
41
48
export "IDF_PATH=${GITHUB_WORKSPACE}/lib/esp-idf"
42
- git submodule update --init lib/esp-idf/components/bt/host/nimble/nimble lib/esp-idf/components/esp_wifi lib/esp-idf/components/esptool_py/esptool lib/esp-idf/components/lwip/lwip lib/esp-idf/components/mbedtls/mbedtls lib/esp-idf/components/bt/controller/lib_esp32 lib/esp-idf/components/bt/controller/lib_esp32c3_family
43
49
./lib/esp-idf/install.sh all
44
50
. ./lib/esp-idf/export.sh
45
51
You can’t perform that action at this time.
0 commit comments