mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-24 04:32:36 +00:00
27 lines
451 B
YAML
27 lines
451 B
YAML
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
|