From 72ee5176c5b290710c8181e5ab52a2c3971a3021 Mon Sep 17 00:00:00 2001 From: Cameron Tacklind Date: Tue, 26 May 2026 15:11:14 -0700 Subject: [PATCH] ci: standardize workflow name + simplify version step Renames the workflow from `Build firmware` -> `Build` to match the other firmware repos (AVR, uMaker, libCameron, MLX90363). Drops the `avr-libc-dev -v 2>/dev/null || dpkg ...` fallback in the versions step in favor of the standard `dpkg -s avr-libc | grep '^Version'` line used elsewhere. Also drops the unused full `avr-gcc --version` output in favor of `head -1`. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7d0f0a..34b9806 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build firmware +name: Build on: push: @@ -22,9 +22,9 @@ jobs: - name: Toolchain versions run: | - avr-gcc --version - avr-g++ --version - avr-libc-dev -v 2>/dev/null || dpkg -s avr-libc | grep '^Version' + avr-gcc --version | head -1 + avr-g++ --version | head -1 + dpkg -s avr-libc | grep '^Version' make --version | head -1 - name: make build