allow more v810 instructions (fixes mario kart homebrew) #302
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
on: [push] | |
name: Build Red Viper | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: devkitpro/devkitarm | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: build Red Viper | |
run: git config --global --add safe.directory $PWD && make release | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: red-viper.cia | |
path: red-viper.cia | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: red-viper.3dsx | |
path: red-viper.3dsx |