Skip to content

Commit c0adac5

Browse files
committed
Corrected editor components for desktop and mobile
1 parent afde308 commit c0adac5

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

.yamato/desktop-standalone-tests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,7 @@ desktop_standalone_tests_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{
3434
{% endif %}
3535

3636
# Installing editor
37-
{% if platform.extension == "arm64" %}
38-
- unity-downloader-cli --arch arm64 -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp {% endif %} --fast --wait
39-
{% else %}
40-
- unity-downloader-cli -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp {% endif %} --fast --wait
41-
{% endif %}
37+
- unity-downloader-cli {% if platform.extension == "arm64" %} --arch arm64 {% endif %} -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp {% endif %} --fast --wait
4238

4339
# Build Player
4440
- |

.yamato/mobile-standalone-test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,7 @@ build_{{ project.name }}_{{ editor }}_{{ platform.name }}:
2121
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
2222

2323
# Installing editor
24-
{% if platform.extension == "arm64" %}
25-
- unity-downloader-cli --arch arm64 -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp {% endif %} --fast --wait
26-
{% else %}
27-
- unity-downloader-cli -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp {% endif %} --fast --wait
28-
{% endif %}
24+
- unity-downloader-cli {% if platform.extension == "arm64" %} --arch arm64 {% endif %} -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp {% endif %} {% if platform.base == "mac" %} -c ios {% endif %} {% if platform.base == "win" %} -c android {% endif %} --fast --wait
2925

3026
# Platform specific Build
3127
{% if platform.base == "win" %}

0 commit comments

Comments
 (0)