Add all_versions_built dummy job for github status check (#2746)

* Add all_versions_built dummy job for github status check

* the joys of gha, take 2

* the joys of gha, take 3

* ruin bss for testing

* the joys of gha, take 4

* refix bss
This commit is contained in:
Dragorn421
2026-05-03 17:55:43 +02:00
committed by GitHub
parent baf7ca83b1
commit 93d008d650
+13
View File
@@ -67,6 +67,19 @@ jobs:
name: oot-${{ matrix.version }}.map
path: build/${{ matrix.version }}/oot-${{ matrix.version }}.map
# This job does not do anything, its purpose is to be used as a status check in GitHub rules.
all_versions_built:
name: All versions built
needs: [build_repo]
runs-on: ubuntu-latest
# Solution 1 from https://github.com/actions/runner/issues/2566#issuecomment-3053484216
if: always()
steps:
- run: |
if [ "${{ needs.build_repo.result }}" != "success" ]; then
exit 1
fi
merge_bss_fixes:
name: Merge BSS fixes
runs-on: ubuntu-latest