Skip to content

Replace mock baserom with real baserom #516

Replace mock baserom with real baserom

Replace mock baserom with real baserom #516

Workflow file for this run

name: Build CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitarm
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install python dependencies
run: apt-get update && apt-get install -y python3-pip && pip3 install numpy
- name: Build tools
run: ./build_tools.sh
- name: Download, extract and check base ROM
env:
BASEROM_URL: ${{ secrets.BASEROM_URL }}
run: |
curl -LO "$BASEROM_URL" && unzip baserom.zip && ./check_baserom.sh
- name: Run make
run: make
- name: Check ROM size
run: apt-get install -y bc && ./check_rom_size.sh
- uses: actions/upload-artifact@v3
with:
name: linker-mapfile
path: FEHRR.map