Skip to content

Commit

Permalink
ci: fix esp ci
Browse files Browse the repository at this point in the history
Signed-off-by: Haobo Gu <[email protected]>
  • Loading branch information
HaoboGu committed Dec 16, 2024
1 parent 76c6db0 commit 31e52c8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build esp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,21 @@ jobs:
steps:
- uses: cargo-bins/cargo-binstall@main
- uses: actions/checkout@v3
- uses: actions/cache@v3
id: cache-cargo
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
./examples/use_rust/esp32s3_ble/target/
./examples/use_rust/esp32s3_ble/.embuild/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install ldproxy and espup
run: cargo binstall ldproxy espup -y
- name: Install esp toolchain
run: espup install
- name: Build esp32s3_ble
working-directory: ./examples/use_rust/esp32s3_ble
run: |
Expand All @@ -94,8 +107,21 @@ jobs:
steps:
- uses: cargo-bins/cargo-binstall@main
- uses: actions/checkout@v3
- uses: actions/cache@v3
id: cache-cargo
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
./examples/use_rust/esp32s3_ble/target/
./examples/use_rust/esp32s3_ble/.embuild/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install ldproxy and espup
run: cargo binstall ldproxy espup -y
- name: Install esp toolchain
run: espup install
- name: Build esp32s3_ble with config
working-directory: ./examples/use_config/esp32s3_ble
run: |
Expand Down

0 comments on commit 31e52c8

Please sign in to comment.