diff options
| author | Anghelo Carvajal <angheloalf95@gmail.com> | 2026-07-31 08:43:06 -0400 |
|---|---|---|
| committer | Anghelo Carvajal <angheloalf95@gmail.com> | 2026-07-31 08:43:06 -0400 |
| commit | f841d8453e9b668bf5090e2b64a618fdb059c3d0 (patch) | |
| tree | 6d64774a5df9c2f953f63033286de94176cc2762 | |
| parent | d8e41875e2dd25b4f96827901d8faa49410f298c (diff) | |
Fix asset extraction for WIP versions
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27849fe0c..efa596c1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,8 +63,14 @@ jobs: - name: Check setup warnings run: ./tools/warnings_count/compare_warnings.sh setup + # WIP versions do not have asset extraction properly set up yet. + # Instead we rely on the assets from the US version for now. - name: Assets + if: matrix.non_matching != 1 run: make -j $(nproc) VERSION=${{ matrix.version }} assets 2> >(tee tools/warnings_count/warnings_assets_new.txt) + - name: Assets US for WIP versions + if: matrix.non_matching == 1 + run: make -j $(nproc) VERSION=n64-us assets 2> >(tee tools/warnings_count/warnings_assets_new.txt) - name: Check assets warnings run: ./tools/warnings_count/compare_warnings.sh assets |
