-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
77d50dd
commit 073bbce
Showing
1 changed file
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,15 +47,21 @@ jobs: | |
# - name: Install Linux Dependencies | ||
# run: sudo apt-get update && sudo apt-get install -y libudev-dev | ||
# continue-on-error: true | ||
# - name: Setup Linux Rust toolchain and cache | ||
# uses: actions-rust-lang/[email protected] | ||
# continue-on-error: true | ||
- name: Setup Linux Rust toolchain and cache | ||
uses: actions-rust-lang/[email protected] | ||
continue-on-error: true | ||
# - name: Convert ELF to .bin | ||
# run: | | ||
# cargo install espflash --version 3.2.0 --target x86_64-unknown-linux-gnu | ||
# ~/.cargo/bin/espflash save-image --chip esp32 target/xtensa-esp32-espidf/release/mff-hr-v1 target/xtensa-esp32-espidf/release/app.bin | ||
# ~/.cargo/bin/espflash partition-table partitions.csv --to-binary -o target/xtensa-esp32-espidf/release/partitions-0x8000.bin | ||
# continue-on-error: true | ||
- name: Install Cargo Binstall | ||
uses: cargo-bins/cargo-binstall@main | ||
- name: Install espflash | ||
run: cargo binstall espflash --version 3.2.0 --target x86_64-unknown-linux-gnu --no-confirm | ||
- name: Build Release Binary | ||
run: espflash save-image --chip esp32 --flash-size 4mb --partition-table partitions.csv --merge target/xtensa-esp32-espidf/release/mff-hr-v1 target/xtensa-esp32-espidf/release/out.bin | ||
- name: Archive Release artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
|