pokeemmo/.github/workflows/buildrom.yml
2021-03-03 02:07:15 -05:00

28 lines
594 B
YAML

name: Build ROM
on: push
# push:
# tags:
# - 'v*'
jobs:
build_rom:
runs-on: ubuntu-latest
# container:
# image: arantonitis/devkitgba
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get install binutils-arm-none-eabi gcc-arm-none-eabi
- name: Build & install agbcc
run: |
cd ..
git clone --depth 1 https://github.com/pret/agbcc
cd agbcc
./build.sh
./install.sh ../pokeemerald
- name: Build ROM
run: |
make