Skip to content

Commit 7cce69a

Browse files
committed
Removed macOS Arm64 from WebGl build platforms due to errors with OpenCL
1 parent 654bb64 commit 7cce69a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.yamato/_run-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ run_all_webgl_builds:
4848
dependencies:
4949
{% for project in projects.default -%}
5050
{% for platform in test_platforms.desktop -%}
51-
{% if platform.name != "win-arm64" -%} # Recommended to use only after builds
51+
{% if platform.extension != "arm64" -%} # Windows_arm64 is recommended to use only after builds and when it comes to macOS_arm64 there is problem with OpenCL not being available
5252
{% for editor in validation_editors.all -%}
5353
- .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform }}_{{ editor }}
5454
{% endfor -%}

.yamato/project-pack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% for project in projects.all -%}
77
{% for platform in small_agent -%}
88
project_pack_-_{{ project.name }}:
9-
name: Project Pack - {{ project.name }}
9+
name: Project Pack - {{ project.name }} [{{ platform.name }}]
1010
agent:
1111
type: {{ platform.type }}
1212
image: {{ platform.image }}

.yamato/project-standards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
# Project standards are being checked for package (in project context)
55
# It should be enough to perform the test on default project
6-
{% for platform in test_platforms.default -%}
76
{% for project in projects.all -%}
7+
{% for platform in test_platforms.default -%}
88
{% for editor in validation_editors.default -%}
99
standards_{{ platform.name }}_{{ project.name }}_{{ editor }}:
10-
name: Standards Check - NGO [{{ platform.name }}, {{ project.name }}, {{ editor }}]
10+
name: Standards Check - NGO {{ project.name }} [{{ platform.name }}, {{ editor }}]
1111
agent:
1212
type: {{ platform.type }}
1313
image: {{ platform.image }}

.yamato/webgl-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# WebGL requires Il2cpp scripting backend
99
{% for project in projects.default -%}
1010
{% for platform in test_platforms.desktop -%}
11-
{% if platform.name != "win-arm64" -%} # Recommended to use only after builds
11+
{% if platform.extension != "arm64" -%} # Windows_arm64 is recommended to use only after builds and when it comes to macOS_arm64 there is problem with OpenCL not being available
1212
{% for editor in validation_editors.all -%}
1313
webgl_build_{{ project.name }}_{{ platform }}_{{ editor }}:
1414
name: WebGl Build - {{ project.name }} [{{ platform.name }}, {{ editor }}, il2cpp]
@@ -40,9 +40,9 @@ webgl_build_{{ project.name }}_{{ platform }}_{{ editor }}:
4040
# Build Player
4141
- |
4242
{% if platform.base == "win" %}
43-
utr.bat --suite=playmode --platform=WebGL --artifacts_path=build/test-results --testproject={{ project.path }} --editor-location=.Editor --build-only --player-save-path=build/players --extra-editor-arg=-batchmode --scripting-backend=il2cpp --extra-editor-arg="-cloudEnvironment staging" --extra-editor-arg=-nographics {% if platform.base == "mac" %} --extra-editor-arg=-disable-gpu-skinning {% endif %}
43+
utr.bat --suite=playmode --platform=WebGL --artifacts_path=build/test-results --testproject={{ project.path }} --editor-location=.Editor --build-only --player-save-path=build/players --extra-editor-arg=-batchmode --scripting-backend=il2cpp --extra-editor-arg="-cloudEnvironment staging" --extra-editor-arg=-nographics
4444
{% else %}
45-
./utr --suite=playmode --platform=WebGL --artifacts_path=build/test-results --testproject={{ project.path }} --editor-location=.Editor --build-only --player-save-path=build/players --extra-editor-arg=-batchmode --scripting-backend=il2cpp --extra-editor-arg="-cloudEnvironment staging" --extra-editor-arg=-nographics {% if platform.base == "mac" %} --extra-editor-arg=-disable-gpu-skinning {% endif %}
45+
./utr --suite=playmode --platform=WebGL --artifacts_path=build/test-results --testproject={{ project.path }} --editor-location=.Editor --build-only --player-save-path=build/players --extra-editor-arg=-batchmode --scripting-backend=il2cpp --extra-editor-arg="-cloudEnvironment staging" --extra-editor-arg=-nographics
4646
{% endif %}
4747

4848
artifacts:

0 commit comments

Comments
 (0)