Skip to content

Commit

Permalink
Update esp32.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
luxincn authored Jul 8, 2024
1 parent c75898d commit 9b6228a
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions .github/workflows/esp32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ on:
- 'cmake/**'
- 'src/*'
- 'src/layer/*'
- 'src/layer/x86/**'
- 'src/layer/vulkan/**'
- 'tests/**'
pull_request:
branches: [master]
paths:
Expand All @@ -18,9 +15,6 @@ on:
- 'cmake/**'
- 'src/*'
- 'src/layer/*'
- 'src/layer/x86/**'
- 'src/layer/vulkan/**'
- 'tests/**'
workflow_dispatch:

concurrency:
Expand Down Expand Up @@ -53,17 +47,14 @@ jobs:
- name: Install build-essential
run: sudo apt-get install -y build-essential

- name: Cache-ESP-IDF
id: Cache-ESP-IDF
uses: actions/cache@v2
- name: Checkout ESP-IDF
uses: actions/checkout@v4
with:
path: esp-idf-install
key: esp-idf-${{ runner.os }}-install
repository: espressif/esp-idf
ref: release/v5.2.2

- name: Clone and Install ESP-IDF
if: steps.Cache-ESP-IDF.outputs.cache-hit != 'true'
- name: Install ESP-IDF
run: |
git clone https://github.com/espressif/esp-idf
cd esp-idf
git submodule update --init --recursive
./install.sh
Expand Down

0 comments on commit 9b6228a

Please sign in to comment.