Move Wifi Station Mode setting into settings.rs (#113) #309
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2026 Roman Valls Guimera <brainstorm@nopcode.org> | |
| # | |
| # SPDX-License-Identifier: GPL-3.0-or-later | |
| name: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| espressif-targets: | |
| name: Espressif target ${{ matrix.device.soc }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| device: [ | |
| # RISC-V devices: | |
| { soc: "esp32c2", toolchain: "stable" }, | |
| { soc: "esp32c3", toolchain: "stable" }, | |
| # { soc: "esp32c5", toolchain: "stable" }, | |
| { soc: "esp32c6", toolchain: "stable" }, | |
| # Xtensa devices: | |
| { soc: "esp32", toolchain: "esp" }, | |
| { soc: "esp32s2", toolchain: "esp" }, | |
| { soc: "esp32s3", toolchain: "esp" }, | |
| ] | |
| steps: | |
| - name: Cache | |
| uses: mozilla-actions/sccache-action@v0.0.10 | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Rust toolchain for RISC-V | |
| if: ${{ !contains(fromJson('["esp32", "esp32s2", "esp32s3"]'), matrix.device.soc) }} | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| target: riscv32imc-unknown-none-elf,riscv32imac-unknown-none-elf | |
| toolchain: stable | |
| components: rust-src, clippy, rustfmt | |
| - name: Setup Rust toolchain for Xtensa | |
| if: ${{ contains(fromJson('["esp32", "esp32s2", "esp32s3"]'), matrix.device.soc) }} | |
| uses: esp-rs/xtensa-toolchain@v1.7.0 | |
| with: | |
| ldproxy: false | |
| version: 1.96.0 | |
| - name: Build project | |
| run: cargo +${{ matrix.device.toolchain }} build-${{ matrix.device.soc }} | |
| - name: Check lints and format | |
| if: ${{ contains(fromJson('["esp32c6"]'), matrix.device.soc) }} | |
| run: | | |
| cargo +${{ matrix.device.toolchain }} clippy --release --features ${{ matrix.device.soc }} --target riscv32imac-unknown-none-elf -p ssh-stamp-esp32 --bin ssh-stamp-esp32 --no-default-features -- -D warnings -A clippy::default_trait_access | |
| cargo +${{ matrix.device.toolchain }} fmt -- --check | |
| packer: | |
| name: OTA Packer | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Stable Rust Toolchain | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| target: riscv32imac-unknown-none-elf | |
| toolchain: stable | |
| - name: Build utility | |
| run: cargo build-packer |