feat(ci): add compile step to use Dockerfile to build norns #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: compile | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| compile-norns: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: compile norns | |
| uses: addnab/docker-run-action@v3 | |
| with: | |
| image: robbielyman/norns-ci:latest | |
| options: -v ${{ github.workspace }}:/norns-build | |
| run: | | |
| ./waf configure --release && ./waf build --release |