-
-
Notifications
You must be signed in to change notification settings - Fork 59
41 lines (37 loc) · 1.27 KB
/
build esp.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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