Skip to content

Commit a571fde

Browse files
robbielymanDewb
authored andcommitted
feat(ci): add compile step to use Dockerfile to build norns
This commit adds `.github/workflows/compile.yml` which uses the Dockerfile from monome#1838 to run a build of the norns system via GitHub Actions.
1 parent 2761861 commit a571fde

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/compile.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: compile
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
compile-norns:
12+
runs-on: ubuntu-24.04-arm
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
submodules: recursive
17+
- name: compile norns
18+
uses: addnab/docker-run-action@v3
19+
with:
20+
image: robbielyman/norns-ci:latest
21+
options: -v ${{ github.workspace }}:/norns-build
22+
run: |
23+
./waf configure --release && ./waf build --release

0 commit comments

Comments
 (0)