Skip to content

Commit

Permalink
Add basic GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
neuschaefer committed Sep 18, 2023
1 parent 74a1f4b commit cccf9a0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update
- run: sudo apt-get install -y gcc-mips-linux-gnu
- uses: actions/checkout@v3
- run: make
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
DIRS=monitor

all: $(DIRS)

$(DIRS):
+$(MAKE) -C $@

.PHONY: $(DIRS)

0 comments on commit cccf9a0

Please sign in to comment.