Match EUC_GetPlayer #923
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: | |
| branches: [ main ] | |
| pull_request: | |
| pull_request_target: | |
| jobs: | |
| format: | |
| if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork || github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.fork}} | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout PR | |
| if: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target'}} | |
| uses: actions/checkout@master | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Checkout | |
| if: ${{ github.event_name == 'push' }} | |
| uses: actions/checkout@master | |
| - name: Install tools | |
| run: | | |
| sudo apt update && sudo apt install clang-format-13 | |
| - name: Check formatting | |
| run: | | |
| make check_format | |
| build: | |
| if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork || github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.fork}} | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout PR | |
| if: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target'}} | |
| uses: actions/checkout@master | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Checkout | |
| if: ${{ github.event_name == 'push' }} | |
| uses: actions/checkout@master | |
| - name: Checkout agbcc | |
| uses: actions/checkout@master | |
| with: | |
| path: agbcc | |
| repository: SAT-R/agbcc | |
| - name: Install tools | |
| run: | | |
| sudo apt update && sudo apt install gcc-arm-none-eabi binutils-arm-none-eabi xorg-dev | |
| python3 -m pip install gitpython | |
| # build-essential, git, and libpng-dev are already installed | |
| # gcc-arm-none-eabi is only needed for the modern build | |
| # as an alternative to dkP | |
| - name: Install agbcc | |
| run: | | |
| ./build.sh | |
| ./install.sh ../ | |
| working-directory: agbcc | |
| - name: Fetch assets | |
| run: curl -o baserom_sa3.gba -u ${{ secrets.STORAGE_USERNAME }}:${{ secrets.STORAGE_PASSWORD }} ${{ secrets.STORAGE_URL }}/baserom.gba | |
| - name: Compare | |
| run: make -j${nproc} | |
| - name: Progress | |
| run: | | |
| python3 scripts/progress.py text | |
| - name: Generate reports | |
| run: | | |
| mkdir -p gh-pages/reports | |
| mkdir -p gh-pages/maps | |
| python3 scripts/progress.py csv >> gh-pages/reports/progress-sa3-nonmatching.csv | |
| python3 scripts/progress.py csv -m >> gh-pages/reports/progress-sa3-matching.csv | |
| python3 scripts/progress.py shield-json > gh-pages/reports/progress-sa3-shield.json | |
| echo "REPORTS_COMMIT_MSG=$( git log --format=%s ${GITHUB_SHA} )" >> $GITHUB_ENV | |
| cp sa3.map gh-pages/maps/${GITHUB_SHA}.map | |
| - name: Upload progress | |
| if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }} | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| path: | | |
| gh-pages | |
| publish-progress: | |
| name: Publish progress | |
| runs-on: ubuntu-24.04 | |
| needs: [build] | |
| # Only able to run from repo pull requests (by maintainers, or on the main branch via push) | |
| if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }} | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout gh-pages | |
| uses: actions/checkout@master | |
| with: | |
| path: gh-pages | |
| ref: gh-pages | |
| - name: Download progress | |
| uses: actions/download-artifact@v7 | |
| with: | |
| path: | | |
| gh-pages | |
| - run: | | |
| cd gh-pages | |
| git status | |
| - name: Publish reports | |
| if: ${{ github.event_name == 'push' }} | |
| uses: EndBug/add-and-commit@v7 | |
| with: | |
| branch: gh-pages | |
| cwd: "./gh-pages" | |
| add: "reports maps" | |
| message: ${{ env.REPORTS_COMMIT_MSG }} |