Add Manual JIT patches to fix multiple games #8
Workflow file for this run
This file contains 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: Build nightly | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
- 'docs' | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
- 'docs' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: devkitpro/devkitarm | |
name: Build with Docker using devkitARM | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Make application | |
run: | | |
make -C code | |
- name: Prepare for build publishing | |
run: | | |
mkdir -p out/_gba/ | |
cp -f code/bootstrap/GBARunner3.nds out/ | |
cp -r configs out/_gba/ | |
- name: Publish build to GH Actions | |
uses: actions/upload-artifact@v4 | |
with: | |
path: out | |
name: GBARunner3 |