diff options
| author | Jeff Epler <jeff@adafruit.com> | 2020-05-23 11:13:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-23 11:13:17 -0500 |
| commit | 285eb71db67125d7c16b3bf05d5f72487a00a439 (patch) | |
| tree | d0eec5a0b633bf270ba843043c9d1316884a825d | |
| parent | eea01c32b8c7727989774f0bb08a5efafc45911e (diff) | |
| parent | 51bed1e7dfb3109ff90f78929418e8098e93ad69 (diff) | |
Merge pull request #2947 from jepler/disable-idf-cache
actions: Don't skip trying to (re)install idf tools
| -rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6eb55ed12..00db855ab 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -389,9 +389,8 @@ jobs: id: idf-cache with: path: ${{ github.workspace }}/.idf_tools - key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/esp32s2/esp-idf/HEAD') }} + key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/esp32s2/esp-idf/HEAD') }}-20200523 - name: Install IDF tools - if: steps.idf-cache.outputs.cache-hit != 'true' run: | $IDF_PATH/tools/idf_tools.py --non-interactive install required $IDF_PATH/tools/idf_tools.py --non-interactive install cmake |
