From f1ba0e01f51196a9e0a85f3cc6dcd8ca0cbd004b Mon Sep 17 00:00:00 2001 From: Luke Street Date: Mon, 18 Sep 2023 21:57:22 -0400 Subject: [PATCH] Disable RELs for non-USA versions for now --- .github/workflows/build.yml | 2 +- configure.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) 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):