2021-03-09 06:31:51 +00:00
|
|
|
name: Build ROM
|
2021-03-05 02:14:29 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-03-09 06:31:51 +00:00
|
|
|
branches: [ romhack ]
|
2021-03-05 02:14:29 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2021-03-09 06:31:51 +00:00
|
|
|
build_rom:
|
|
|
|
name: Build ROM
|
|
|
|
runs-on: ubuntu-latest
|
2021-03-05 02:14:29 +00:00
|
|
|
steps:
|
2021-03-09 06:31:51 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
|
|
run: sudo apt-get install binutils-arm-none-eabi gcc-arm-none-eabi
|
|
|
|
- name: Build & install agbcc
|
2021-03-05 02:14:29 +00:00
|
|
|
run: |
|
2021-03-09 06:31:51 +00:00
|
|
|
cd ..
|
|
|
|
git clone --depth 1 https://github.com/pret/agbcc
|
|
|
|
cd agbcc
|
2021-03-05 02:14:29 +00:00
|
|
|
./build.sh
|
2021-03-09 06:31:51 +00:00
|
|
|
./install.sh ../pokeemerald
|
|
|
|
- name: Build ROM
|
|
|
|
run: |
|
|
|
|
make
|