Skip to content

Commit bcf9efa

Browse files
committed
working on being able to share the SPI Bus
1 parent ee26fe7 commit bcf9efa

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/unix.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,19 @@ jobs:
3333
- name: Get Build Deps
3434
if: steps.cache-deps.outputs.cache-hit != 'true'
3535
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
3739
cd lib/micropython && git checkout v1.23.0 && cd ../..
40+
41+
git submodule update --init -- lib/lvgl
3842
cd lib/lvgl && git checkout master && cd ../..
43+
44+
git submodule update --init -- lib/SDL
3945
cd lib/SDL && git checkout release-2.30.2 && cd ../..
4046
47+
git submodule update --init --recursive -- lib/esp-idf
4148
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
4349
./lib/esp-idf/install.sh all
4450
. ./lib/esp-idf/export.sh
4551

0 commit comments

Comments
 (0)