Skip to content

Commit

Permalink
Merge branch 'feature/git' of github.com:Northeastern-Electric-Racing…
Browse files Browse the repository at this point in the history
…/Shepherd-BMS into feature/git
  • Loading branch information
Jake-Hensley committed Jan 18, 2025
2 parents 6a7d734 + 0d1f03d commit 31bd451
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,16 @@ on: [push]
jobs:
run-build:
runs-on: ubuntu-latest
container:
image: ghcr.io/northeastern-electric-racing/embedded-base:main
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive

fetch-depth: 0
- name: Execute Make
run: |
if ! make; then
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
fi

0 comments on commit 31bd451

Please sign in to comment.