summaryrefslogtreecommitdiff
path: root/.github/actions/setup_toolchain
diff options
context:
space:
mode:
authorhathach <[email protected]>2024-05-21 13:25:15 +0700
committerhathach <[email protected]>2024-05-21 13:25:15 +0700
commit1d7aeb3fb6b53e8b71e7aecc8e99af425f87d174 (patch)
treeb577f8fde040b2d0c1a808f575a3d7e94c3417b2 /.github/actions/setup_toolchain
parent4e24ec5e5d19f47748a13d5d4849a56c4ff7ba87 (diff)
try to update cache for esp-idf
Diffstat (limited to '.github/actions/setup_toolchain')
-rw-r--r--.github/actions/setup_toolchain/espressif/action.yml19
1 files changed, 9 insertions, 10 deletions
diff --git a/.github/actions/setup_toolchain/espressif/action.yml b/.github/actions/setup_toolchain/espressif/action.yml
index 494b7910e..46da02911 100644
--- a/.github/actions/setup_toolchain/espressif/action.yml
+++ b/.github/actions/setup_toolchain/espressif/action.yml
@@ -11,32 +11,31 @@ inputs:
runs:
using: "composite"
steps:
- - id: set-docker-image
+ - name: Set DOCKER_ESP_IDF
run: |
- DOCKER_IMAGE=$HOME/cache/${{ inputs.toolchain }}/docker_image.tar
- echo "DOCKER_IMAGE=$DOCKER_IMAGE" >> $GITHUB_ENV
- echo "DOCKER_IMAGE=$DOCKER_IMAGE" >> $GITHUB_OUTPUT
+ DOCKER_ESP_IDF=$HOME/cache/${{ inputs.toolchain }}/docker_image.tar
+ echo "DOCKER_ESP_IDF=$DOCKER_ESP_IDF" >> $GITHUB_ENV
shell: bash
- name: Cache Docker Image
uses: actions/cache@v4
id: cache-toolchain-espressif
with:
- path: ${{ steps.set-docker-image.outputs.DOCKER_IMAGE }}
+ path: ${{ env.DOCKER_ESP_IDF }}
key: ${{ inputs.toolchain }}-${{ inputs.toolchain_url }}
- name: Pull and Save Docker Image
if: steps.cache-toolchain-espressif.outputs.cache-hit != 'true'
run: |
docker pull espressif/idf:${{ inputs.toolchain_url }}
- mkdir -p ~/cache/${{ inputs.toolchain }}
- docker save -o $DOCKER_IMAGE espressif/idf:${{ inputs.toolchain_url }}
- du -sh $DOCKER_IMAGE
+ mkdir -p $(dirname $DOCKER_ESP_IDF)
+ docker save -o $DOCKER_ESP_IDF espressif/idf:${{ inputs.toolchain_url }}
+ du -sh $DOCKER_ESP_IDF
shell: bash
- name: Load Docker Image
if: steps.cache-toolchain-espressif.outputs.cache-hit == 'true'
run: |
- du -sh $DOCKER_IMAGE
- docker load --input $DOCKER_IMAGE
+ du -sh $DOCKER_ESP_IDF
+ docker load --input $DOCKER_ESP_IDF
shell: bash