mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
add CI for GP2X also
no helix as it has (had?) weird license IIRC
This commit is contained in:
parent
842f4e44d4
commit
8013663ec2
3 changed files with 28 additions and 3 deletions
20
.github/workflows/ci-gp2x.yml
vendored
Normal file
20
.github/workflows/ci-gp2x.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: CI (GP2X)
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
whoami
|
||||
sudo apt-get update -qq
|
||||
sudo apt-get install -y wget
|
||||
wget http://notaz.gp2x.de/downloads/gp2x/devkitGP2X_small.tar.xz
|
||||
tar -C /tmp/ -xf devkitGP2X_small.tar.xz
|
||||
- name: configure
|
||||
run: DUMP_CONFIG_LOG=1 PATH=$PATH:/tmp/devkitGP2X/bin CROSS_COMPILE=arm-linux- ./configure --platform=gp2x
|
||||
- name: make
|
||||
run: PATH=$PATH:/tmp/devkitGP2X/bin CROSS_COMPILE=arm-linux- make PLATFORM_MP3=0
|
Loading…
Add table
Add a link
Reference in a new issue