mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
add CI for psp
This commit is contained in:
parent
ccc39358b0
commit
70ef073f66
3 changed files with 30 additions and 4 deletions
20
.github/workflows/ci-psp.yml
vendored
Normal file
20
.github/workflows/ci-psp.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: CI (PSP)
|
||||
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 https://github.com/pspdev/pspdev/releases/download/latest/pspdev-ubuntu-latest.tar.gz
|
||||
tar -C /tmp/ -xf pspdev-ubuntu-latest.tar.gz
|
||||
- name: configure
|
||||
run: DUMP_CONFIG_LOG=1 PATH=$PATH:/tmp/pspdev/bin CROSS_COMPILE=psp- ./configure --platform=psp
|
||||
- name: make
|
||||
run: PATH=$PATH:/tmp/pspdev/bin CROSS_COMPILE=psp- make
|
Loading…
Add table
Add a link
Reference in a new issue