fix: use 'make get-deps' and 'make images' to skip host unit tests in CI
Build Firmware / Build stm32-teslacharger (pull_request) Failing after 1m0s

This commit is contained in:
2026-04-30 10:40:24 -04:00
parent 7f1d417db6
commit 69822ca08e
+3 -5
View File
@@ -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