diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-07-28 05:48:30 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-07-28 06:30:04 +0200 |
commit | 0943dfc34a75436e754b6f56c7ed2a061df99585 (patch) | |
tree | 1755fd055dd7746acb0225d6a1c14bd68519ece2 /tools/android.py | |
parent | 59fca06354b049c164fd5f49fd23eda99ee7a859 (diff) | |
download | redot-cpp-0943dfc34a75436e754b6f56c7ed2a061df99585.tar.gz |
[CI] Fix Android builds after GH container update.
Diffstat (limited to 'tools/android.py')
-rw-r--r-- | tools/android.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tools/android.py b/tools/android.py index 98c3b3f..e96f9e6 100644 --- a/tools/android.py +++ b/tools/android.py @@ -18,19 +18,15 @@ def options(opts): def exists(env): - if not "ANDROID_NDK_ROOT" in os.environ: - return False - return True + return "ANDROID_NDK_ROOT" in os.environ or "ANDROID_NDK_ROOT" in ARGUMENTS def generate(env): - if not "ANDROID_NDK_ROOT" in os.environ: + if "ANDROID_NDK_ROOT" not in env: raise ValueError( "To build for Android, ANDROID_NDK_ROOT must be defined. Please set ANDROID_NDK_ROOT to the root folder of your Android NDK installation." ) - env["ANDROID_NDK_ROOT"] = os.environ["ANDROID_NDK_ROOT"] - if env["arch"] not in ("arm64", "x86_64", "arm32", "x86_32"): print("Only arm64, x86_64, arm32, and x86_32 are supported on Android. Exiting.") Exit() |