mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
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
|
|
MODERN: 0
|
|
COMPARE: 0
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Checkout agbcc
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: agbcc
|
|
repository: pret/agbcc
|
|
|
|
- name: Install binutils
|
|
run: sudo apt install gcc-arm-none-eabi binutils-arm-none-eabi libelf-dev
|
|
# 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: Agbcc
|
|
run: make -j${nproc} -O all
|
|
|
|
- name: Modern
|
|
env:
|
|
MODERN: 1
|
|
COMPARE: 0
|
|
run: make -j${nproc} -O all
|
|
|
|
- name: Test
|
|
env:
|
|
TEST: 1
|
|
run: |
|
|
make -j${nproc} -O pokeemerald-test.elf
|
|
make -j${nproc} check
|