Merge pull request #38 from HaoboGu/feat/rapid_debouncer #45
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
name: Build ESP examples | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install ldproxy | |
run: cargo install ldproxy | |
- name: Switch to nightly | |
run: rustup default nightly | |
- name: Add targets to nightly | |
run: rustup target add thumbv7em-none-eabihf thumbv7em-none-eabi riscv32imc-unknown-none-elf --toolchain nightly | |
- name: Add components to nightly | |
run: rustup component add rust-src --toolchain nightly | |
- name: Build esp32c3_ble | |
working-directory: ./examples/use_rust/esp32c3_ble | |
run: cargo +nightly build --release | |
- name: Build esp32c3_ble with config | |
working-directory: ./examples/use_config/esp32c3_ble | |
run: cargo +nightly build --release | |
- name: Install espup | |
run: cargo install espup | |
- name: Install esp toolchain | |
run: espup install | |
- name: Build esp32s3_ble | |
working-directory: ./examples/use_rust/esp32s3_ble | |
run: cargo +esp build --release | |
- name: Build esp32s3_ble with config | |
working-directory: ./examples/use_config/esp32s3_ble | |
run: cargo +esp build --release |