diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2026-05-03 17:55:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-03 17:55:43 +0200 |
| commit | 93d008d650ed25a775d652c5acace70201013280 (patch) | |
| tree | 79a3f69db014b68a9507e20052aeae7046b4bcd1 /.github/workflows | |
| parent | baf7ca83b1194ec78a2b9eb86970811f685067cd (diff) | |
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
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd2132a82..4fe6557b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 |
