Skip to content

Temporarily remove the Android on Mac test runs #998

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions scripts/gha/print_matrix_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,11 @@ def get_testapp_build_matrix(matrix_type, unity_versions, platforms, build_os, i
platform = li[1]
os = li[2] if li[2] else (MACOS_RUNNER if (platform in [IOS, TVOS]) else WINDOWS_RUNNER)

# TODO: Remove this when we can get it working on GHA again
# Skip the MacOS + Android combo, because it has been having configuration issues on the GHA machines
if platform==ANDROID and os==MACOS_RUNNER:
continue

if platform in [IOS, TVOS]:
# for iOS, tvOS platforms, exclude non macOS build_os
if os==MACOS_RUNNER:
Expand Down
Loading