pokeemerald/.github/workflows/build.yml

56 lines
1.2 KiB
YAML
Raw Normal View History

2021-03-05 03:14:29 +01:00
name: CI
on:
push:
branches:
2021-04-03 07:26:55 +02:00
- master
- battle_engine
- pokemon_expansion
- item_expansion
2021-03-05 03:14:29 +01:00
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
GAME_VERSION: EMERALD
GAME_REVISION: 0
GAME_LANGUAGE: ENGLISH
MODERN: 0
COMPARE: 0
2021-03-05 03:14:29 +01:00
steps:
- name: Checkout
2021-04-03 07:26:55 +02:00
uses: actions/checkout@v2
2021-03-05 03:14:29 +01:00
- name: Checkout agbcc
uses: actions/checkout@v2
with:
path: agbcc
repository: pret/agbcc
2021-03-05 03:14:29 +01:00
- name: Install binutils
run: sudo apt install gcc-arm-none-eabi binutils-arm-none-eabi libelf-dev
2021-03-05 03:14:29 +01:00
# 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
2021-03-05 03:14:29 +01:00
2021-04-03 07:26:55 +02:00
- name: Agbcc
run: make -j${nproc} -O all
2021-03-05 03:14:29 +01:00
- name: Modern
env:
MODERN: 1
COMPARE: 0
run: make -j${nproc} -O all
- name: Test
run: |
make -j${nproc} -O pokeemerald-test.elf
make -j${nproc} check