mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 06:54:24 -04:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user