WIP PS3 test #1
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: Build latest (PS3) | |
on: [push] | |
concurrency: | |
group: ${{ github.ref }}-ps3 | |
cancel-in-progress: true | |
jobs: | |
build-PSP: | |
if: github.ref_name == github.event.repository.default_branch | |
runs-on: ubuntu-latest | |
container: | |
image: akusiroyo/ps3sdk:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Compile PS3 build | |
id: compile | |
run: | | |
make ps3 | |
- uses: ./.github/actions/notify_failure | |
if: ${{ always() && steps.compile.outcome == 'failure' }} | |
with: | |
NOTIFY_MESSAGE: 'Failed to compile PS3 build' | |
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}' | |
- uses: ./.github/actions/upload_build | |
if: ${{ always() && steps.compile.outcome == 'success' }} | |
with: | |
SOURCE_FILE: 'ClassiCube-ps3.self' | |
DEST_NAME: 'ClassiCube-ps3.self' |