Add docker-based compilation actions

This commit is contained in:
Carsten Teibes
2020-06-18 03:31:57 +02:00
parent 8ccb8fe870
commit 2734075909
3 changed files with 65 additions and 0 deletions

26
.github/workflows/compilation.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: CI
on:
push:
pull_request:
repository_dispatch:
types: [run_build]
jobs:
build:
runs-on: ubuntu-latest
container: pspdev/psptoolchain:latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
apk add build-base autoconf automake zlib-dev
- name: Compile PSPSDK
run: |
./bootstrap
./configure
make clean
make -j2
make install