Merge pull request #3358 from jepler/esp-idf-submodules
actions: Clone the esp-idf submodules ourselves
This commit is contained in:
commit
e8a29ece23
|
@ -433,6 +433,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: ${{ github.workspace }}/.idf_tools
|
path: ${{ github.workspace }}/.idf_tools
|
||||||
key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/esp32s2/esp-idf/HEAD') }}-20200801
|
key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/esp32s2/esp-idf/HEAD') }}-20200801
|
||||||
|
- name: Clone IDF submodules
|
||||||
|
run: |
|
||||||
|
(cd $IDF_PATH && git submodule update --init)
|
||||||
|
env:
|
||||||
|
IDF_PATH: ${{ github.workspace }}/ports/esp32s2/esp-idf
|
||||||
- name: Install IDF tools
|
- name: Install IDF tools
|
||||||
run: |
|
run: |
|
||||||
$IDF_PATH/tools/idf_tools.py --non-interactive install required
|
$IDF_PATH/tools/idf_tools.py --non-interactive install required
|
||||||
|
|
Loading…
Reference in New Issue