From 69822ca08ec3a0e2a310ea445b4e34a00db0d4c7 Mon Sep 17 00:00:00 2001 From: Kyle Date: Thu, 30 Apr 2026 10:40:24 -0400 Subject: [PATCH] fix: use 'make get-deps' and 'make images' to skip host unit tests in CI --- .gitea/workflows/build.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index f8adaa5..69eef2a 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -20,15 +20,13 @@ jobs: fetch-depth: 0 - name: Build libopencm3 - run: make -C libopencm3 -j$(nproc) + run: make get-deps - name: Build firmware - run: make -j$(nproc) + run: make images -j$(nproc) - name: Show binary size - run: | - arm-none-eabi-size stm32_charger.elf - ls -lh stm32_charger.bin + run: ls -lh stm32_charger.bin - name: Upload binary uses: actions/upload-artifact@v3