Skip to content

WIP: Input device

WIP: Input device #558

Workflow file for this run

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 esp32c3_ble:

Check failure on line 23 in .github/workflows/build esp.yml

View workflow run for this annotation

GitHub Actions / Build ESP examples

Invalid workflow file

The workflow is not valid. .github/workflows/build esp.yml (Line: 23, Col: 3): The identifier 'build esp32c3_ble' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters. .github/workflows/build esp.yml (Line: 44, Col: 3): The identifier 'build esp32c6_ble' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
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
build esp32c6_ble:
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 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
build esp32s3_ble:
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 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