Skip to content

Commit

Permalink
Uninstall platforms;android-33-ext5 when building testapps (#667)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlmostMatt authored Mar 30, 2023
1 parent 5d672e7 commit c18fc44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/gha/build_testapps.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,8 @@ def patch_android_env(unity_version):
# If this continues to be a problem, this logic might need to be smarter, to remove all versions newer than 32,
# but currently the GitHub runners have 33 as their max.
logging.info("Uninstall Android platform android-33")
_run([sdkmanager_path, "--uninstall", "platforms;android-33", "platforms;android-33-ext4"], check=False)
_run([sdkmanager_path, "--uninstall",
"platforms;android-33", "platforms;android-33-ext4", "platforms;android-33-ext5"], check=False)
except Exception as e:
logging.exception("Failed to uninstall Android platform android-33")

Expand Down

0 comments on commit c18fc44

Please sign in to comment.