Use dka container for a more modern gcc (#3429)

Co-authored-by: sbird <sbird@no.tld>
This commit is contained in:
Philipp AUER 2023-10-16 20:11:34 +02:00 committed by GitHub
parent 8176dd8af1
commit 9ece7ed047
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,7 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: devkitpro/devkitarm
env: env:
GAME_VERSION: EMERALD GAME_VERSION: EMERALD
GAME_REVISION: 0 GAME_REVISION: 0
@ -27,7 +28,7 @@ jobs:
repository: pret/agbcc repository: pret/agbcc
- name: Install binutils - name: Install binutils
run: sudo apt install gcc-arm-none-eabi binutils-arm-none-eabi libelf-dev run: sudo apt install -y build-essential libpng-dev libelf-dev
# build-essential, git, and libpng-dev are already installed # build-essential, git, and libpng-dev are already installed
# gcc-arm-none-eabi is only needed for the modern build # gcc-arm-none-eabi is only needed for the modern build
# as an alternative to dkP # as an alternative to dkP