Bodyprog: trim struct suffixes, naming #2909
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: Determine and Push Progress | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| build: | |
| if: github.repository == 'Vatuu/silent-hill-decomp' | |
| container: ghcr.io/vatuu/decomp-images-silent-hill:master | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| game_id: [ SLUS-00707 ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| lfs: true | |
| - name: "Install Extra Dependencies" | |
| run: apt-get install -y binutils-mipsel-linux-gnu | |
| - name: "Setup Python" | |
| run: pip3 install -r requirements.txt --break-system-packages | |
| - name: "Copy ROM" | |
| run: | | |
| mkdir -p ./rom/image | |
| cp -r -p /rom/* ./rom/image | |
| - name: Extract Game Assets | |
| run: make extract | |
| - name: Generate Progress Report | |
| run: make report | |
| - name: Upload Progress Report | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.game_id }}_report | |
| path: ./build/USA/progress.json | |