Skip to content

Commit

Permalink
37 build aut (#45)
Browse files Browse the repository at this point in the history
* Adding in initial rev of build test

* checking again

* Doing a quick test

* Doing another test

* Trying to tag the docker image

* removing ta

* Trying to use a container as a base

* Hopefully this works

* Making sure that this build will fail

* making code work again
  • Loading branch information
nwdepatie authored Sep 25, 2023
1 parent abe778d commit 548fdc6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build
on: [push]
jobs:
run-build:
runs-on: ubuntu-latest
container:
image: nwdepatie/ner-gcc-arm:latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive

- 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 548fdc6

Please sign in to comment.