From 93d008d650ed25a775d652c5acace70201013280 Mon Sep 17 00:00:00 2001 From: Dragorn421 Date: Sun, 3 May 2026 17:55:43 +0200 Subject: [PATCH] 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 --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd2132a82d..4fe6557b7a 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