Skip to content

Update embassy to latest version #41

Update embassy to latest version

Update embassy to latest version #41

Workflow file for this run

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