Add B_LEVEL_UP_NOTIFICATION to improve player QoL when performing multiple level ups #12509
Workflow file for this run
This file contains 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 | |
container: devkitpro/devkitarm | |
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 build-essential libpng-dev libelf-dev | |
# build-essential and git are already installed | |
# gcc-arm-none-eabi is only needed for the modern build | |
# as an alternative to dkP | |
- name: ROM | |
env: | |
COMPARE: 0 | |
run: make -j${nproc} -O all | |
- name: Test | |
env: | |
TEST: 1 | |
run: | | |
make -j${nproc} check |