fix(workflow) speed up MicroPython workflow

Previously cloning submodules took a very long time - too slow to give useful feedback.
This commit is contained in:
embeddedt
2021-07-11 15:37:43 -04:00
committed by GitHub
parent 9a77102c40
commit 38ad5d548b

View File

@@ -21,8 +21,10 @@ jobs:
run: | run: |
git clone https://github.com/lvgl/lv_micropython.git . git clone https://github.com/lvgl/lv_micropython.git .
git checkout master git checkout master
- name: Update submodules - name: Initialize lv_bindings submodule
run: git submodule update --init --recursive run: git submodule update --init --recursive lib/lv_bindings
- name: Update Unix port submodules
run: make -C ports/unix submodules
- name: Checkout LVGL submodule - name: Checkout LVGL submodule
working-directory: ./lib/lv_bindings/lvgl working-directory: ./lib/lv_bindings/lvgl
run: | run: |