Create linux-build.yml

This commit is contained in:
Schnappy 2021-11-01 16:38:57 +01:00 committed by GitHub
parent bd4ab53536
commit aa3171b3a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

24
.github/workflows/linux-build.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Linux build
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install mipsel toolchain
run: |
sudo apt-get update
sudo apt-get install gcc-mipsel-linux-gnu g++-mipsel-linux-gnu binutils-mipsel-linux-gnu p7zip
- name: Get converted libs
run: |
cd nolibgs_hello_worlds
wget http://psx.arthus.net/sdk/Psy-Q/psyq-4.7-converted-full.7z
7z x psyq-4.7-converted-full.7z -o./psyq
- uses: actions/checkout@v2
- name: make all
run: make all