Move to devenv #36
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: | |
- '.github/workflows/telemetry-module-firmware.yml' | |
- 'devenv.*' | |
- 'peripheral-controller/telemetry-protocol/**' | |
- 'telemetry-module/firmware/**' | |
pull_request: | |
paths: | |
- '.github/workflows/telemetry-module-firmware.yml' | |
- 'devenv.*' | |
- 'peripheral-controller/telemetry-protocol/**' | |
- 'telemetry-module/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} | |
env: | |
WIFI_PASSWORD: "loool dont steal me" | |
MQTT_PASSWORD: "not real" | |
run: | | |
set -x | |
cd ./telemetry-module/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} | |
env: | |
WIFI_PASSWORD: "loool dont steal me" | |
MQTT_PASSWORD: "not real" | |
run: | | |
set -x | |
cd ./telemetry-module/firmware | |
rustup target add thumbv6m-none-eabi | |
rustup show | |
cargo build --release |