File tree Expand file tree Collapse file tree 3 files changed +195
-168
lines changed Expand file tree Collapse file tree 3 files changed +195
-168
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,13 @@ jobs:
21
21
- name : Install Dependencies
22
22
run : |
23
23
brew install --force ninja
24
- git submodule update --init lib/pycparser
25
- git submodule update --init --remote -- lib/micropython
26
- git submodule update --init -- lib/lvgl
27
- git submodule update --init -- lib/SDL
28
- cd lib/SDL && git checkout release-2.30.2 && cd ../..
24
+ git submodule update --init -- lib/pycparser
25
+ git submodule update --init --jobs 4 -- lib/micropython
26
+ git submodule update --init --jobs 4 -- lib/lvgl
27
+ git submodule update --init --jobs 4 -- lib/SDL
28
+ cd lib/SDL
29
+ git checkout release-2.30.2
30
+ cd ../..
29
31
30
32
- name : Cached Deps
31
33
id : cache-deps
36
38
37
39
- name : Get Build Deps
38
40
if : steps.cache-deps.outputs.cache-hit != 'true'
39
- run : git submodule update --init --recursive --remote -- lib/esp-idf
41
+ run : |
42
+ git submodule update --init --jobs 4 -- lib/esp-idf
43
+ cd lib/esp-idf
44
+ git submodule update --init --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
45
+ cd ../..
40
46
41
47
- name : Setup ESP-IDF
42
48
run : |
Original file line number Diff line number Diff line change @@ -25,11 +25,13 @@ jobs:
25
25
- name : Install Deps
26
26
run : |
27
27
sudo apt-get update && sudo apt-get install --assume-yes --allow-downgrades --allow-remove-essential --allow-change-held-packages build-essential pkg-config cmake ninja-build libffi-dev gnome-desktop-testing libasound2-dev libpulse-dev libaudio-dev libjack-dev libsndio-dev libx11-dev libxext-dev libxrandr-dev libxcursor-dev libxfixes-dev libxi-dev libxss-dev libxkbcommon-dev libdrm-dev libgbm-dev libgl1-mesa-dev libgles2-mesa-dev libegl1-mesa-dev libdbus-1-dev libibus-1.0-dev libudev-dev fcitx-libs-dev libpipewire-0.3-dev libwayland-dev libdecor-0-dev ccache
28
- git submodule update --init lib/pycparser
29
- git submodule update --init --remote -- lib/micropython
30
- git submodule update --init -- lib/lvgl
31
- git submodule update --init -- lib/SDL
32
- cd lib/SDL && git checkout release-2.30.2 && cd ../..
28
+ git submodule update --init -- lib/pycparser
29
+ git submodule update --init --jobs 4 -- lib/micropython
30
+ git submodule update --init --jobs 4 -- lib/lvgl
31
+ git submodule update --init --jobs 4 -- lib/SDL
32
+ cd lib/SDL
33
+ git checkout release-2.30.2
34
+ cd ../..
33
35
34
36
- name : Cached Deps
35
37
id : cache-deps
40
42
41
43
- name : Get Build Deps
42
44
if : steps.cache-deps.outputs.cache-hit != 'true'
43
- run : git submodule update --init --recursive --remote -- lib/esp-idf
45
+ run : |
46
+ git submodule update --init --jobs 4 -- lib/esp-idf
47
+ cd lib/esp-idf
48
+ git submodule update --init --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
49
+ cd ../..
44
50
45
51
- name : Setup ESP-IDF
46
52
run : |
You can’t perform that action at this time.
0 commit comments