diff options
| author | Jeff Epler <jeff@adafruit.com> | 2020-09-01 07:07:05 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-01 07:07:05 -0500 |
| commit | e8a29ece234512aafd5b8ff29ea6b647fbf8e126 (patch) | |
| tree | 4ddd9d158e257fa556fd4cc90296e573fc5a9c31 /.github/workflows | |
| parent | 877a4f47cc90e0f81b474e186d74959b181faa03 (diff) | |
| parent | ef8cde94a47a140c21175cbe7fc877535b9ed0ea (diff) | |
Merge pull request #3358 from jepler/esp-idf-submodules
actions: Clone the esp-idf submodules ourselves
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e780f652a..3c7cc781b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -433,6 +433,11 @@ jobs: with: path: ${{ github.workspace }}/.idf_tools 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 run: | $IDF_PATH/tools/idf_tools.py --non-interactive install required |
