2021-03-05 02:14:29 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-06-16 15:03:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
GAME_VERSION: EMERALD
|
|
|
|
GAME_REVISION: 0
|
|
|
|
GAME_LANGUAGE: ENGLISH
|
|
|
|
MODERN: 0
|
|
|
|
COMPARE: 1
|
2021-03-05 02:14:29 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@master
|
|
|
|
|
2021-06-16 15:03:23 +00:00
|
|
|
- name: Checkout syms
|
2021-08-11 21:19:21 +00:00
|
|
|
if: ${{ github.event_name == 'push' }}
|
2021-06-16 15:03:23 +00:00
|
|
|
uses: actions/checkout@master
|
|
|
|
with:
|
|
|
|
path: symbols
|
|
|
|
ref: symbols
|
|
|
|
|
|
|
|
- name: Checkout agbcc
|
|
|
|
uses: actions/checkout@master
|
|
|
|
with:
|
|
|
|
path: agbcc
|
|
|
|
repository: pret/agbcc
|
|
|
|
|
2021-03-05 02:14:29 +00:00
|
|
|
- name: Install binutils
|
2024-10-11 17:05:56 +00:00
|
|
|
run: |
|
|
|
|
sudo apt install gcc-arm-none-eabi binutils-arm-none-eabi libpng-dev
|
|
|
|
# build-essential and git are already installed
|
2021-03-05 02:14:29 +00:00
|
|
|
# gcc-arm-none-eabi is only needed for the modern build
|
|
|
|
# as an alternative to dkP
|
|
|
|
|
|
|
|
- name: Install agbcc
|
|
|
|
run: |
|
|
|
|
./build.sh
|
|
|
|
./install.sh ../
|
2021-06-16 15:03:23 +00:00
|
|
|
working-directory: agbcc
|
2021-03-05 02:14:29 +00:00
|
|
|
|
|
|
|
- name: Compare
|
2021-06-16 15:03:23 +00:00
|
|
|
run: make -j${nproc} all syms
|
2021-03-05 02:14:29 +00:00
|
|
|
|
|
|
|
- name: Modern
|
2021-06-16 15:03:23 +00:00
|
|
|
env:
|
|
|
|
MODERN: 1
|
|
|
|
COMPARE: 0
|
|
|
|
run: make -j${nproc} all
|
2021-03-05 02:14:29 +00:00
|
|
|
|
2021-06-16 15:03:23 +00:00
|
|
|
- name: Move symfiles
|
2021-08-11 21:19:21 +00:00
|
|
|
if: ${{ github.event_name == 'push' }}
|
2021-06-16 15:03:23 +00:00
|
|
|
run: |
|
|
|
|
cp -v *.sym symbols/
|
2021-08-11 21:09:03 +00:00
|
|
|
echo "SYMBOLS_COMMIT_MSG=$( git log --format=%s ${GITHUB_SHA} )" >> $GITHUB_ENV
|
2021-06-16 15:03:23 +00:00
|
|
|
|
|
|
|
- name: Update symfiles
|
2021-08-11 21:19:21 +00:00
|
|
|
if: ${{ github.event_name == 'push' }}
|
2021-06-16 15:03:23 +00:00
|
|
|
uses: EndBug/add-and-commit@v7
|
|
|
|
with:
|
|
|
|
branch: symbols
|
|
|
|
cwd: "./symbols"
|
|
|
|
add: "*.sym"
|
2021-08-11 21:09:03 +00:00
|
|
|
message: ${{ env.SYMBOLS_COMMIT_MSG }}
|