Fix USCF Chess and Land Battle: enable $D000-$D3FF RAM 8 #137
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| repository_dispatch: | |
| types: [run_build] | |
| jobs: | |
| build-ps2: | |
| runs-on: ubuntu-latest | |
| container: ps2dev/ps2dev:latest | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| apk add build-base git zip | |
| - name: Mark repo as safe | |
| run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
| - uses: actions/checkout@v2 | |
| - run: | | |
| git fetch --prune --unshallow | |
| - name: Compile project | |
| run: | | |
| make platform=ps2 clean all | |
| - name: Get short SHA | |
| id: slug | |
| run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)" | |
| - name: Upload artifacts | |
| if: ${{ success() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: freeintv_libretro_ps2-${{ steps.slug.outputs.sha8 }} | |
| path: freeintv_libretro_ps2.a |