Fix CI, use build instead of check to detect linker errors #64
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: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Examples: | |
SSID: "" | |
PASSWORD: "" | |
STATIC_IP: "" | |
GATEWAY_IP: "" | |
DEFMT_LOG: "trace" | |
# 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 }} | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: esp-rs/xtensa-toolchain@v1.5 | |
with: | |
default: true | |
buildtargets: esp32 | |
ldproxy: false | |
- uses: Swatinem/rust-cache@v1 | |
- name: check-fmt | |
run: cargo fmt --check | |
builds-xtensa: | |
strategy: | |
matrix: | |
chip: ["esp32", "esp32s2", "esp32s3"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: esp-rs/xtensa-toolchain@v1.5 | |
with: | |
default: true | |
buildtargets: ${{ matrix.chip }} | |
ldproxy: false | |
- uses: Swatinem/rust-cache@v1 | |
- name: build | |
run: cd esp-wifi && cargo b${{ matrix.chip }} | |
- name: build (common features) | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --features=async,wifi,esp-now,embassy-net,log | |
- name: build (common features + defmt) | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --no-default-features --features=async,wifi,esp-now,embassy-net,defmt | |
- name: build (dhcp) | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=dhcp --features=wifi | |
- name: build (static_ip) | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=static_ip --features=wifi | |
- name: build (esp_now) | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=esp_now --features=esp-now | |
- name: build (embassy_esp_now) | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=embassy_esp_now --features=async,esp-now | |
- name: build (embassy_esp_now_duplex) | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=embassy_esp_now_duplex --features=async,esp-now | |
- name: build (embassy_dhcp) | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=embassy_dhcp --features=async,wifi,embassy-net | |
- name: build (embassy_access_point) | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=embassy_access_point --features=async,wifi,embassy-net | |
- name: build (common features + ble) | |
if: ${{ matrix.chip == 'esp32' || matrix.chip == 'esp32s3' }} | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --features=async,wifi,ble,esp-now,embassy-net,log | |
- name: build (common features + ble + defmt) | |
if: ${{ matrix.chip == 'esp32' || matrix.chip == 'esp32s3' }} | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --no-default-features --features=async,wifi,ble,esp-now,embassy-net,defmt | |
- name: build (ble) | |
if: ${{ matrix.chip == 'esp32' || matrix.chip == 'esp32s3' }} | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=ble --features=ble | |
- name: build (async_ble) | |
if: ${{ matrix.chip == 'esp32' || matrix.chip == 'esp32s3' }} | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=async_ble --features=async,ble | |
- name: build (coex) | |
if: ${{ matrix.chip == 'esp32' || matrix.chip == 'esp32s3' }} | |
run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=coex --features=wifi,ble,coex | |
builds-riscv: | |
strategy: | |
matrix: | |
chip: ["esp32c2", "esp32c3", "esp32c6"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
targets: riscv32imc-unknown-none-elf,riscv32imac-unknown-none-elf | |
toolchain: nightly-2023-05-16 | |
components: rust-src,rustfmt | |
- uses: Swatinem/rust-cache@v1 | |
- name: build | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} | |
- name: build (common features) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --features=async,wifi,esp-now,embassy-net,log | |
- name: build (common features + defmt) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --no-default-features --features=async,wifi,esp-now,embassy-net,defmt | |
- name: build (dhcp) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --release --example=dhcp --features=wifi | |
- name: build (static_ip) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --release --example=static_ip --features=wifi | |
- name: build (esp_now) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --release --example=esp_now --features=esp-now | |
- name: build (embassy_esp_now) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --release --example=embassy_esp_now --features=async,esp-now | |
- name: build (embassy_esp_now_duplex) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --release --example=embassy_esp_now_duplex --features=async,esp-now | |
- name: build (embassy_dhcp) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --release --example=embassy_dhcp --features=async,wifi,embassy-net | |
- name: build (embassy_access_point) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --release --example=embassy_access_point --features=async,wifi,embassy-net | |
- name: build (common features + ble) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --features=async,wifi,ble,esp-now,embassy-net,log | |
- name: build (common features + ble + defmt) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --no-default-features --features=async,wifi,ble,esp-now,embassy-net,defmt | |
- name: build (ble) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --release --example=ble --features=ble | |
- name: build (async_ble) | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --release --example=async_ble --features=async,ble | |
- name: build (coex) | |
if: ${{ matrix.chip == 'esp32c3' }} | |
run: cargo +nightly-2023-05-16 b${{ matrix.chip }} --release --example=coex --features=wifi,ble,coex |