telemetry-module: update Rust dependencies #83
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: Peripheral Controller Firmware | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/peripheral-controller.yml' | |
- 'devenv.*' | |
- 'peripheral-controller/telemetry-protocol/**' | |
- 'peripheral-controller/firmware/**' | |
pull_request: | |
paths: | |
- '.github/workflows/peripheral-controller.yml' | |
- 'devenv.*' | |
- 'peripheral-controller/telemetry-protocol/**' | |
- 'peripheral-controller/firmware/**' | |
jobs: | |
quality: | |
name: Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: devenv | |
- name: Install devenv.sh | |
run: nix profile install nixpkgs#devenv | |
- name: Clippy | |
shell: devenv shell bash -- -e {0} | |
run: | | |
set -x | |
cd ./peripheral-controller/firmware | |
rustup target add thumbv6m-none-eabi | |
rustup show | |
cargo clippy -- -Dwarnings | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: | |
- quality | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: devenv | |
- name: Install devenv.sh | |
run: nix profile install nixpkgs#devenv | |
- name: Build | |
shell: devenv shell bash -- -e {0} | |
run: | | |
set -x | |
cd ./peripheral-controller/firmware | |
rustup target add thumbv6m-none-eabi | |
rustup show | |
cargo build --release --no-default-features --features telemetry | |
cargo build --release --no-default-features --features telemetry --features panic-probe | |
cargo build --release --no-default-features | |
cargo build --release --no-default-features --features panic-probe |