Skip to content

Commit

Permalink
adding cerberus build automation (#21)
Browse files Browse the repository at this point in the history
* adding cerberus build automation
  • Loading branch information
nwdepatie committed Oct 13, 2023
1 parent 33faed3 commit fb6c67f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build_cerberus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Cerberus
on: [push]
jobs:
run-build:
runs-on: ubuntu-latest
container:
image: nwdepatie/ner-gcc-arm:latest
timeout-minutes: 10
steps:
- name: Clone Cerberus
uses: actions/checkout@v3
with:
repository: Northeastern-Electric-Racing/Cerberus

- name: Clone Embedded-base
uses: actions/checkout@v3
with:
path: "./Drivers/Embedded-Base"

- name: Execute Make
run: |
if ! make; then
echo "The application has failed to build."
exit 1 # This will cause the workflow to fail
fi

0 comments on commit fb6c67f

Please sign in to comment.