mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-26 02:25:13 +00:00
Add docker-based compilation actions
This commit is contained in:
26
.github/workflows/compilation.yml
vendored
Normal file
26
.github/workflows/compilation.yml
vendored
Normal 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
|
||||
Reference in New Issue
Block a user