34 lines
719 B
YAML
34 lines
719 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
repository_dispatch:
|
|
types: [run_build]
|
|
|
|
jobs:
|
|
build-ps2:
|
|
runs-on: ubuntu-latest
|
|
container: ps2dev/ps2dev:latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
apk add build-base git bash
|
|
|
|
- name: Compile project
|
|
run: |
|
|
make -f Makefile.libretro platform=ps2 clean all
|
|
|
|
- name: Get short SHA
|
|
id: slug
|
|
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
|
|
|
|
- name: Upload artifacts
|
|
if: ${{ success() }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: fceumm_libretro_ps2-${{ steps.slug.outputs.sha8 }}
|
|
path: fceumm_libretro_ps2.a
|