Merge pull request #298 from warmenhoven/warmenhoven/pr/tvos13 #173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v2 | |
- name: Install dependencies | |
run: | | |
apk add build-base | |
- name: Get Information Variables | |
id: core | |
run: | | |
echo "::set-output name=info::$(echo mgba)" | |
echo "::set-output name=platform::$(echo ps2)" | |
echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)" | |
- name: Compile project | |
run: | | |
make platform=${{ steps.core.outputs.platform }} clean all | |
- name: Upload artifacts | |
if: ${{ success() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ steps.core.outputs.info }}_libretro_${{ steps.core.outputs.platform }}-${{ steps.core.outputs.sha8 }} | |
path: ${{ steps.core.outputs.info }}_libretro_${{ steps.core.outputs.platform }}.a |