You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# upm-ci uses unity-downloader-cli under the hood to download Editor and currently it always downloads x64 verion Editor no matter on which platform.
23
-
# For 2019.4 and 2020.3, they don't have Silicon version Editor. So if the editor version is 2019.4 or 2020.3, or it is not a Silicon Mac platform nor ARM64 Windows, just call upm-ci which will use x64 version editor for testing.
24
-
{% if editor.version == "2019.4" or editor.version == "2020.3" or platform.model != "M1" and platform.model != "arm" %}
19
+
# If not on Silicon Mac nor ARM64 Windows, just call upm-ci which will use x64 version editor for testing.
20
+
{% if platform.model != "M1" and platform.model != "arm" %}
25
21
- upm-ci package test --unity-version {{ editor.version }} --package-path com.unity.formats.alembic
26
22
{% else %}
27
23
# Explicitly download ARM64 version Editor for 2021.3+(included) on Silicon Mac or ARM64 Windows.
# 2019.4 and 2020.3 doesn't have ARM64 version Editor, so download x64 version for them even if on Silicon Mac or ARM64 Windows. On other platforms, always download x64 version.
19
-
{% if editor.version == "2019.4" or editor.version == "2020.3" or platform.model != "M1" and platform.model != "arm" %}
18
+
{% if platform.model != "M1" and platform.model != "arm" %}
# 2019.4 and 2020.3 doesn't have ARM64 version Editor, so download x64 version for them even if on Silicon Mac or ARM64 Windows. On other platforms, always download x64 version.
50
-
{% if editor.version == "2019.4" or editor.version == "2020.3" or platform.model != "M1" and platform.model != "arm" %}
48
+
{% if platform.model != "M1" and platform.model != "arm" %}
# upm-ci uses unity-downloader-cli under the hood to download Editor and currently it always downloads x64 verion Editor no matter on which platform.
81
-
# 2019.4 and 2020.3 doesn't have ARM64 version Editor, so download x64 version for them even if on Silicon Mac or ARM64 Windows. On other platforms, always download x64 version.
82
-
{% if editor.version == "2019.4" or editor.version == "2020.3" or platform.model != "M1" and platform.model != "arm" %}
78
+
{% if platform.model != "M1" and platform.model != "arm" %}
"ValidationTest": "Package Unity Version Validation",
5
+
"ExceptionMessage": "The Unity version requirement is more strict than in the previous version of the package. Increment the minor version of the package to leave patch versions available for previous version. Read more about this error and potential solutions at https://docs.unity3d.com/Packages/com.unity.package-validation-suite@latest/index.html?preview=1&subfolder=/manual/package_unity_version_validation_error.html#the-unity-version-requirement-is-more-strict-than-in-the-previous-version-of-the-package",
0 commit comments