Skip to content

Commit a6f4e50

Browse files
authored
Remove Mac Android from the test matrix (#1021)
1 parent f0d6c34 commit a6f4e50

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/gha/print_matrix_configuration.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,11 @@ def get_testapp_test_matrix(matrix_type, unity_versions, platforms, build_os, mo
334334
platform = li[1]
335335
build_os = li[2] if li[2] else (MACOS_RUNNER if (platform in [IOS, TVOS]) else WINDOWS_RUNNER)
336336

337+
# TODO: Remove this when we can get it working on GHA again
338+
# Skip the MacOS + Android combo, because it has been having configuration issues on the GHA machines
339+
if platform==ANDROID and os==MACOS_RUNNER:
340+
continue
341+
337342
if platform in [WINDOWS, MACOS, LINUX]:
338343
test_os = _get_test_os(platform)
339344
matrix["include"].append({"unity_version": unity_version, "platform": platform, "build_os": build_os, "test_os": test_os, "test_device": "github_runner", "device_detail": "NA", "device_type": "NA", "ios_sdk": "NA"})

0 commit comments

Comments
 (0)