-
-
Notifications
You must be signed in to change notification settings - Fork 58
63 lines (58 loc) · 1.79 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Build ESP examples
on:
push:
branches: ["main"]
paths: ["examples/**", "rmk/**", "rmk-macro/**"]
pull_request:
branches: ["main"]
paths: ["examples/**", "rmk/**", "rmk-macro/**"]
# Cancel any currently running workflows from the same PR, branch, or
# tag when a new workflow is triggered.
#
# https://stackoverflow.com/a/66336834
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
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: Install espup
run: cargo install espup
- name: Install esp toolchain
run: espup install
- name: Build esp32c3_ble
working-directory: ./examples/use_rust/esp32c3_ble
run: |
cargo +esp build --release
cargo clean
- name: Build esp32c3_ble with config
working-directory: ./examples/use_config/esp32c3_ble
run: |
cargo +esp build --release
cargo clean
- name: Build esp32c6_ble
working-directory: ./examples/use_rust/esp32c6_ble
run: |
cargo +esp build --release
cargo clean
- name: Build esp32c6_ble with config
working-directory: ./examples/use_config/esp32c6_ble
run: |
cargo +esp build --release
cargo clean
- name: Build esp32s3_ble
working-directory: ./examples/use_rust/esp32s3_ble
run: |
cargo +esp build --release
cargo clean
- name: Build esp32s3_ble with config
working-directory: ./examples/use_config/esp32s3_ble
run: |
cargo +esp build --release
cargo clean