feat: memory card manager #876
Workflow file for this run
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: Swiss build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Build Swiss | |
| runs-on: ubuntu-latest | |
| container: ghcr.io/extremscorner/libogc2:latest | |
| steps: | |
| - name: Install packages | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends -t bookworm-backports 7zip gcc gcc-mingw-w64-i686 libc6-dev libc6-i386 xorriso | |
| - name: Checkout Swiss | |
| uses: actions/checkout@main | |
| with: | |
| path: swiss | |
| fetch-depth: 0 | |
| submodules: true | |
| - name: Build Swiss artifacts | |
| run: make | |
| working-directory: swiss | |
| - name: Upload Swiss artifacts | |
| uses: actions/upload-artifact@main | |
| with: | |
| name: swiss-gc | |
| path: swiss/swiss_r*/* |