Skip to content

Changed STM32 HAL #include to not be platform-specific (#307) #1213

Changed STM32 HAL #include to not be platform-specific (#307)

Changed STM32 HAL #include to not be platform-specific (#307) #1213

name: Build Cerberus
on: [push]
jobs:
run-build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
repository: Northeastern-Electric-Racing/Cerberus
fetch-depth: 0
- name: Clone Embedded-base
uses: actions/checkout@v3
with:
path: "./Drivers/Embedded-Base"
- name: Execute Make
run: |
if ! docker compose run --rm ner-gcc-arm make -j `nproc`; then
echo "The application has failed to build."
exit 1 # This will cause the workflow to fail
fi