ClassiCube/.github/workflows/build_psp.yml

44 lines
1.3 KiB
YAML
Raw Normal View History

name: Build latest (PSP)
on: [push]
concurrency:
group: ${{ github.ref }}-psp
cancel-in-progress: true
jobs:
2023-07-26 07:42:03 -04:00
build-PSP:
if: github.ref_name == github.event.repository.default_branch
runs-on: ubuntu-latest
container:
image: pspdev/pspdev:latest
steps:
- uses: actions/checkout@v3
2023-07-26 07:42:03 -04:00
- name: Compile PSP build
id: compile
run: |
make psp
# otherwise notify_failure doesn't work
- name: Install curl when necessary
if: ${{ always() && steps.compile.outcome == 'failure' }}
run: apk add curl curl-dev
2023-07-26 07:42:03 -04:00
- uses: ./.github/actions/notify_failure
if: ${{ always() && steps.compile.outcome == 'failure' }}
with:
NOTIFY_MESSAGE: 'Failed to compile PSP build'
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
2023-07-26 07:42:03 -04:00
- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
2023-08-19 19:28:49 -04:00
SOURCE_FILE: 'EBOOT.PBP'
DEST_NAME: 'EBOOT.PBP'
- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
SOURCE_FILE: 'ClassiCube-psp.elf'
DEST_NAME: 'ClassiCube-psp.elf'