mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-24 05:10:42 -04:00
Really fix workflows
This commit is contained in:
parent
7c9490116a
commit
6af12744ff
4
.github/workflows/build_3ds.yml
vendored
4
.github/workflows/build_3ds.yml
vendored
@ -26,9 +26,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile 3DS build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce 3DS build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_android.yml
vendored
4
.github/workflows/build_android.yml
vendored
@ -102,9 +102,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile android build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce android build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_dreamcast.yml
vendored
4
.github/workflows/build_dreamcast.yml
vendored
@ -36,9 +36,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Dreamcast build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Dreamcast build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_freebsd.yml
vendored
4
.github/workflows/build_freebsd.yml
vendored
@ -55,9 +55,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile FreeBSD build(s)'
|
||||
NOTIFY_MESSAGE: 'Failed to produce FreeBSD build(s)'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_haiku.yml
vendored
4
.github/workflows/build_haiku.yml
vendored
@ -30,9 +30,9 @@ jobs:
|
||||
x86_64-unknown-haiku-gcc ${{ env.SRCS }} -o ClassiCube-haiku ${{ env.COMMON_FLAGS }} ${{ env.LIBS }}
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Haiku build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Haiku build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_ios.yml
vendored
4
.github/workflows/build_ios.yml
vendored
@ -29,9 +29,9 @@ jobs:
|
||||
zip -r cc.ipa Payload
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile iOS build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce iOS build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
|
8
.github/workflows/build_linux.yml
vendored
8
.github/workflows/build_linux.yml
vendored
@ -53,9 +53,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile 32 bit Linux build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce 32 bit Linux build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
@ -118,9 +118,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile 64 bit Linux build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce 64 bit Linux build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_mac32.yml
vendored
4
.github/workflows/build_mac32.yml
vendored
@ -60,9 +60,9 @@ jobs:
|
||||
i386-apple-darwin8-lipo -create -output cc-mac32-universal cc-mac32-gl1 cc-mac32-ppc
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile 32 bit macOS build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce 32 bit macOS build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_mac64.yml
vendored
4
.github/workflows/build_mac64.yml
vendored
@ -38,9 +38,9 @@ jobs:
|
||||
# https://wiki.freepascal.org/Code_Signing_for_macOS#Ad_hoc_signing
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile 64 bit macOS builds'
|
||||
NOTIFY_MESSAGE: 'Failed to produce 64 bit macOS builds'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_macclassic.yml
vendored
4
.github/workflows/build_macclassic.yml
vendored
@ -28,9 +28,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Mac Classic build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Mac Classic build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_msdos.yml
vendored
4
.github/workflows/build_msdos.yml
vendored
@ -31,9 +31,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile MS DOS build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce MS DOS build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_n64.yml
vendored
4
.github/workflows/build_n64.yml
vendored
@ -38,9 +38,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile N64 build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce N64 build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_nds.yml
vendored
4
.github/workflows/build_nds.yml
vendored
@ -33,9 +33,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile NDS build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce NDS build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_netbsd.yml
vendored
4
.github/workflows/build_netbsd.yml
vendored
@ -46,9 +46,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile NetBSD build(s)'
|
||||
NOTIFY_MESSAGE: 'Failed to produce NetBSD build(s)'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_ps1.yml
vendored
4
.github/workflows/build_ps1.yml
vendored
@ -32,9 +32,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile PS1 build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce PS1 build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_ps2.yml
vendored
4
.github/workflows/build_ps2.yml
vendored
@ -30,9 +30,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile PS2 build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce PS2 build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_ps3.yml
vendored
4
.github/workflows/build_ps3.yml
vendored
@ -35,9 +35,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile PS3 build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce PS3 build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_psp.yml
vendored
4
.github/workflows/build_psp.yml
vendored
@ -30,9 +30,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile PSP build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce PSP build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
8
.github/workflows/build_rpi.yml
vendored
8
.github/workflows/build_rpi.yml
vendored
@ -44,9 +44,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile RPI 32 bit build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce RPI 32 bit build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
@ -96,9 +96,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile RPI 64 bit build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce RPI 64 bit build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_saturn.yml
vendored
4
.github/workflows/build_saturn.yml
vendored
@ -30,9 +30,9 @@ jobs:
|
||||
make saturn
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Saturn build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Saturn build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_switch.yml
vendored
4
.github/workflows/build_switch.yml
vendored
@ -26,9 +26,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Switch build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Switch build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_symbian.yml
vendored
4
.github/workflows/build_symbian.yml
vendored
@ -43,9 +43,9 @@ jobs:
|
||||
DEST_NAME: 'ClassiCube-Symbian.sis'
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Symbian build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Symbian build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_vita.yml
vendored
4
.github/workflows/build_vita.yml
vendored
@ -26,9 +26,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Vita build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Vita build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_webclient.yml
vendored
4
.github/workflows/build_webclient.yml
vendored
@ -28,9 +28,9 @@ jobs:
|
||||
sed -i 's#eventHandler.useCapture);#{ useCapture: eventHandler.useCapture, passive: false });#g' ClassiCube.js
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Webclient'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Webclient'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
|
4
.github/workflows/build_wiigc.yml
vendored
4
.github/workflows/build_wiigc.yml
vendored
@ -34,9 +34,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Wii/Gamecube build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Wii/Gamecube build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_wiiu.yml
vendored
4
.github/workflows/build_wiiu.yml
vendored
@ -26,9 +26,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile WiiU build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce WiiU build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
8
.github/workflows/build_win-arm.yml
vendored
8
.github/workflows/build_win-arm.yml
vendored
@ -37,9 +37,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile 32 bit Windows build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce 32 bit Windows build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
@ -72,9 +72,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile 64 bit Windows build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce 64 bit Windows build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
- uses: ./.github/actions/upload_build
|
||||
|
8
.github/workflows/build_windows.yml
vendored
8
.github/workflows/build_windows.yml
vendored
@ -49,9 +49,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile 32 bit Windows build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce 32 bit Windows build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
@ -119,9 +119,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile 64 bit Windows build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce 64 bit Windows build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_xbox.yml
vendored
4
.github/workflows/build_xbox.yml
vendored
@ -31,9 +31,9 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Xbox build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Xbox build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/build_xbox360.yml
vendored
4
.github/workflows/build_xbox360.yml
vendored
@ -33,9 +33,9 @@ jobs:
|
||||
make xbox360
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to compile Xbox 360 build'
|
||||
NOTIFY_MESSAGE: 'Failed to produce Xbox 360 build'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
|
||||
|
||||
|
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -116,7 +116,7 @@ jobs:
|
||||
|
||||
|
||||
- uses: ./.github/actions/notify_failure
|
||||
if: ${{ always() && steps.compile.outcome == 'failure' }}
|
||||
if: failure()
|
||||
with:
|
||||
NOTIFY_MESSAGE: 'Failed to produce release'
|
||||
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
|
||||
@ -218,4 +218,4 @@ jobs:
|
||||
if: ${{ always() && steps.compile.outcome == 'success' }}
|
||||
with:
|
||||
DESTINATION_URL: '${{ secrets.NOTIFY_URL }}'
|
||||
WORKFLOW_NAME: 'release'
|
||||
WORKFLOW_NAME: 'release'
|
||||
|
Loading…
x
Reference in New Issue
Block a user