Skip to content

Merge branch 'main' of https://github.com/Formula-Electric-Berkeley/F… #571

Merge branch 'main' of https://github.com/Formula-Electric-Berkeley/F…

Merge branch 'main' of https://github.com/Formula-Electric-Berkeley/F… #571

Workflow file for this run

name: Build All Projects
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# Nightly build at 6 AM UTC
- cron: '0 6 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
project: [BMS, PCU, DASH, LVPDB, DART, DCU, DCU_Receiver, Sensor_Nodes_FRONT, Sensor_Nodes_REAR, UART, UART_TEST]
name: Build ${{ matrix.project }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
submodules: recursive
- name: Build ${{ matrix.project }}
uses: ./.github/actions/build-board
with:
board: ${{ matrix.project }}
build-type: Debug
upload-artifacts: 'true'