fix names in 3ds and switch static buffer #104
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: Nintendo Switch | |
on: [push, pull_request] | |
jobs: | |
Switch-Release: | |
runs-on: ubuntu-latest | |
container: | |
image: docker://devkitpro/devkita64 | |
options: --cpus 2 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure | |
run: /opt/devkitpro/portlibs/switch/bin/aarch64-none-elf-cmake -S . -B build | |
- name: Build | |
run: make -C build | |
- id: commit | |
uses: pr-mpt/actions-commit-hash@v1 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Nintendo Switch-${{ steps.commit.outputs.short }} | |
path: | | |
build/*.elf | |
build/*.nro | |
Switch-Debug: | |
runs-on: ubuntu-latest | |
container: | |
image: docker://devkitpro/devkita64 | |
options: --cpus 2 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure | |
run: /opt/devkitpro/portlibs/switch/bin/aarch64-none-elf-cmake -DCMAKE_BUILD_TYPE=Debug -S . -B build | |
- name: Build | |
run: make -C build | |
- id: commit | |
uses: pr-mpt/actions-commit-hash@v1 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Nintendo Switch (Debug)-${{ steps.commit.outputs.short }} | |
path: | | |
build/*.elf | |
build/*.nro |