comment debug menu #88
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: | |
| - master | |
| - upcoming | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| GAME_VERSION: EMERALD | |
| GAME_REVISION: 0 | |
| GAME_LANGUAGE: ENGLISH | |
| COMPARE: 0 | |
| UNUSED_ERROR: 1 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Install binutils | |
| run: | | |
| sudo apt update | |
| sudo apt install -y binutils-arm-none-eabi gcc-arm-none-eabi libnewlib-arm-none-eabi libpng-dev python3 | |
| # build-essential and git are already installed | |
| - name: Poryscript Download | |
| uses: robinraju/release-downloader@v1 | |
| with: | |
| repository: 'huderlem/poryscript' | |
| latest: true | |
| fileName: 'poryscript-linux.zip' | |
| extract: true | |
| out-file-path: 'tools' | |
| - name: Poryscript Install | |
| run: | | |
| sudo mv tools/poryscript-linux tools/poryscript | |
| sudo chmod +x tools/poryscript/poryscript | |
| - name: ROM | |
| env: | |
| COMPARE: 0 | |
| run: make -j${nproc} -O all | |
| - name: Test | |
| env: | |
| TEST: 1 | |
| run: | | |
| make -j${nproc} check |