Skip to content

Commit f0b3d80

Browse files
committed
Corrected runAll file to account for the change
1 parent c97ba2d commit f0b3d80

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.yamato/_run-all.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,11 @@ run_all_webgl_builds:
102102
dependencies:
103103
{% for project in projects.default -%}
104104
{% for platform in test_platforms.desktop -%}
105+
{% if platform.name != "mac" -%} # There is an error about "Light baking could not be started because no valid OpenCL device could be found". Tracked in MTT-11726
105106
{% for editor in validation_editors.all -%}
106107
- .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform.name }}_{{ editor }}
107108
{% endfor -%}
109+
{% endif -%}
108110
{% endfor -%}
109111
{% endfor -%}
110112

@@ -115,9 +117,11 @@ run_all_webgl_builds_trunk:
115117
dependencies:
116118
{% for project in projects.default -%}
117119
{% for platform in test_platforms.desktop -%}
120+
{% if platform.name != "mac" -%} # There is an error about "Light baking could not be started because no valid OpenCL device could be found". Tracked in MTT-11726
118121
{% for editor in validation_editors.default -%}
119122
- .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform.name }}_{{ editor }}
120123
{% endfor -%}
124+
{% endif -%}
121125
{% endfor -%}
122126
{% endfor -%}
123127

@@ -127,7 +131,9 @@ run_all_webgl_builds_2021:
127131
dependencies:
128132
{% for project in projects.default -%}
129133
{% for platform in test_platforms.desktop -%}
134+
{% if platform.name != "mac" -%} # There is an error about "Light baking could not be started because no valid OpenCL device could be found". Tracked in MTT-11726
130135
- .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform.name }}_2021.3
136+
{% endif -%}
131137
{% endfor -%}
132138
{% endfor -%}
133139

0 commit comments

Comments
 (0)