Update split range for event_funcs.cpp
#158
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: Build | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| container: ghcr.io/eebit/fe11-build:main | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: [YFEE01] | |
| steps: | |
| # Checkout the repository | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| # Copy the original files to the workspace | |
| - name: Prepare | |
| run: | | |
| cp -R /extract . | |
| mv ./extract/arm7_bios.bin . | |
| # Build the project | |
| - name: Build | |
| run: | | |
| python3 tools/configure.py ${{ matrix.version }} -w wibo --compiler /mwccarm --no-extract | |
| ninja arm9 report check | |
| # Upload progress report | |
| - name: Upload report | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.version }}_report | |
| path: build/${{ matrix.version }}/report.json |