From bf8e8b6a76a74e5b159b00ac91d4dc63528f5811 Mon Sep 17 00:00:00 2001 From: CrashOveride95 Date: Sun, 24 Aug 2025 20:59:39 -0400 Subject: [PATCH] Fix CI typo that caused only libultra_rom to be built --- .github/workflows/ci_gcc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_gcc.yml b/.github/workflows/ci_gcc.yml index c6bbd480..b8642cf5 100644 --- a/.github/workflows/ci_gcc.yml +++ b/.github/workflows/ci_gcc.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - version: [libultra, libultra_d, libultra_rom] + target: [libultra, libultra_d, libultra_rom] steps: - name: Checkout repository @@ -27,8 +27,8 @@ jobs: - name: Verify formatting on all files run: python3 tools/check_format.py --verbose - - name: Build ${{ matrix.version }} - run: make -j $(nproc) VERSION=${{ matrix.version }} + - name: Build ${{ matrix.target }} + run: make -j $(nproc) TARGET=${{ matrix.target }} - name: 'Upload Artifact' uses: actions/upload-artifact@v4