mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-12 17:17:09 -04:00
Make debugging possible for console builds
This commit is contained in:
parent
247561db66
commit
42e6719241
6
.github/workflows/build_3ds.yml
vendored
6
.github/workflows/build_3ds.yml
vendored
@ -31,3 +31,9 @@ jobs:
|
||||
with:
|
||||
SOURCE_FILE: 'ClassiCube-3ds.3dsx'
|
||||
DEST_NAME: 'ClassiCube-3ds.3dsx'
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
if: ${{ always() && steps.compile.outcome == 'success' }}
|
||||
with:
|
||||
SOURCE_FILE: 'ClassiCube-3ds.elf'
|
||||
DEST_NAME: 'ClassiCube-3ds.elf'
|
8
.github/workflows/build_dreamcast.yml
vendored
8
.github/workflows/build_dreamcast.yml
vendored
@ -20,14 +20,22 @@ jobs:
|
||||
export PATH=/opt/toolchains/dc/kos/utils/img4dc/build/cdi4dc/:$PATH
|
||||
make dreamcast
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Dreamcast build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
if: ${{ always() && steps.compile.outcome == 'success' }}
|
||||
with:
|
||||
SOURCE_FILE: 'ClassiCube-dc.cdi'
|
||||
DEST_NAME: 'ClassiCube-dc.cdi'
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
if: ${{ always() && steps.compile.outcome == 'success' }}
|
||||
with:
|
||||
SOURCE_FILE: 'ClassiCube-dc.elf'
|
||||
DEST_NAME: 'ClassiCube-dc.elf'
|
12
.github/workflows/build_ps3.yml
vendored
12
.github/workflows/build_ps3.yml
vendored
@ -21,14 +21,22 @@ jobs:
|
||||
export PS3DEV=/usr/local/ps3dev
|
||||
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'
|
||||
SOURCE_FILE: 'ClassiCube-ps3.pkg'
|
||||
DEST_NAME: 'ClassiCube-ps3.pkg'
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
if: ${{ always() && steps.compile.outcome == 'success' }}
|
||||
with:
|
||||
SOURCE_FILE: 'ClassiCube-ps3.elf'
|
||||
DEST_NAME: 'ClassiCube-ps3.elf'
|
6
.github/workflows/build_psp.yml
vendored
6
.github/workflows/build_psp.yml
vendored
@ -36,3 +36,9 @@ jobs:
|
||||
with:
|
||||
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'
|
6
.github/workflows/build_vita.yml
vendored
6
.github/workflows/build_vita.yml
vendored
@ -31,3 +31,9 @@ jobs:
|
||||
with:
|
||||
SOURCE_FILE: 'ClassiCube-vita.vpk'
|
||||
DEST_NAME: 'ClassiCube-vita.vpk'
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
if: ${{ always() && steps.compile.outcome == 'success' }}
|
||||
with:
|
||||
SOURCE_FILE: 'ClassiCube-vita.elf'
|
||||
DEST_NAME: 'ClassiCube-vita.elf'
|
12
.github/workflows/build_wiigc.yml
vendored
12
.github/workflows/build_wiigc.yml
vendored
@ -39,3 +39,15 @@ jobs:
|
||||
with:
|
||||
SOURCE_FILE: 'ClassiCube-gc.dol'
|
||||
DEST_NAME: 'ClassiCube-gc.dol'
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
if: ${{ always() && steps.compile.outcome == 'success' }}
|
||||
with:
|
||||
SOURCE_FILE: 'ClassiCube-wii.elf'
|
||||
DEST_NAME: 'ClassiCube-wii.elf'
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
if: ${{ always() && steps.compile.outcome == 'success' }}
|
||||
with:
|
||||
SOURCE_FILE: 'ClassiCube-gc.elf'
|
||||
DEST_NAME: 'ClassiCube-gc.elf'
|
Loading…
x
Reference in New Issue
Block a user