telemetry module: actually enable MQTT connection and remove config file #11
Workflow file for this run
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: Telemetry Module Firmware | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'flake.*' | |
- 'peripheral-controller/telemetry-protocol/**' | |
- 'telemetry-module/firmware/**' | |
pull_request: | |
paths: | |
- 'flake.*' | |
- 'peripheral-controller/telemetry-protocol/**' | |
- 'telemetry-module/firmware/**' | |
jobs: | |
quality: | |
name: Code Quality | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./telemetry-module/firmware | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
- name: Clippy | |
env: | |
WIFI_PASSWORD: "loool dont steal me" | |
MQTT_PASSWORD: "not real" | |
run: | | |
eval "$(nix print-dev-env)" | |
set -x | |
rustup target add thumbv6m-none-eabi | |
rustup show | |
cargo clippy -- -Dwarnings | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: | |
- quality | |
defaults: | |
run: | |
working-directory: ./telemetry-module/firmware | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
- name: Build | |
env: | |
WIFI_PASSWORD: "loool dont steal me" | |
MQTT_PASSWORD: "not real" | |
run: | | |
eval "$(nix print-dev-env)" | |
set -x | |
rustup target add thumbv6m-none-eabi | |
rustup show | |
cargo build --release |