diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0f50b8..d6fe683 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: python configure.py --map --version ${{matrix.version}} --compilers /compilers ninja - name: Upload progress - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/main' && matrix.version == 'G2ME01' continue-on-error: true env: PROGRESS_API_KEY: ${{secrets.PROGRESS_API_KEY}} diff --git a/configure.py b/configure.py index 3adf69d..d47d5ec 100644 --- a/configure.py +++ b/configure.py @@ -205,6 +205,10 @@ else: cflags_runtime.append("-inline deferred,auto") config.linker_version = "GC/2.7" +if version_num > 1: + # RELs not yet set up for non-USA versions + config.build_rels = False + # Helper function for Dolphin libraries def DolphinLib(lib_name, objects):