summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2024-05-21 14:01:32 +0700
committerGitHub <[email protected]>2024-05-21 14:01:32 +0700
commita1abbd70cbc00878a34f0b7db24805fc78b6b8d8 (patch)
treeb577f8fde040b2d0c1a808f575a3d7e94c3417b2 /.github
parenta068b81674e8b47d6fb78ab6a06abb7decc2e644 (diff)
parent1d7aeb3fb6b53e8b71e7aecc8e99af425f87d174 (diff)
Merge pull request #2654 from hathach/update-circleci
circle ci remove deps caching to reduce storage credit
Diffstat (limited to '.github')
-rw-r--r--.github/actions/setup_toolchain/download/action.yml3
-rw-r--r--.github/actions/setup_toolchain/espressif/action.yml19
2 files changed, 11 insertions, 11 deletions
diff --git a/.github/actions/setup_toolchain/download/action.yml b/.github/actions/setup_toolchain/download/action.yml
index 0b35bddb1..2af456ef8 100644
--- a/.github/actions/setup_toolchain/download/action.yml
+++ b/.github/actions/setup_toolchain/download/action.yml
@@ -12,6 +12,7 @@ runs:
using: "composite"
steps:
- name: Cache Toolchain
+ if: ${{ !startsWith(inputs.toolchain_url, 'https://github.com') }}
uses: actions/cache@v4
id: cache-toolchain-download
with:
@@ -22,7 +23,7 @@ runs:
if: steps.cache-toolchain-download.outputs.cache-hit != 'true'
run: |
mkdir -p ~/cache/${{ inputs.toolchain }}
- wget --progress=dot:mega ${{ inputs.toolchain_url }} -O toolchain.tar.gz
+ wget --progress=dot:giga ${{ inputs.toolchain_url }} -O toolchain.tar.gz
tar -C ~/cache/${{ inputs.toolchain }} -xaf toolchain.tar.gz
shell: bash
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