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
ci: [2.X] disabling WebGL Build job on macOS due to "Light baking could not be started because no valid OpenCL device could be found" error. (#3369)
After switching from Intel macOS to Apple Silicon due to the common
problem with bit-flipping on Intel macOS the WebGL build job started
failing due to "Light baking could not be started because no valid
OpenCL device could be found" error.
We need to figure out if this can be fixed or how to proceed with it.
* PR that switched macOS device -->
[NGOv1.X](#3326),
[NGOv2.X](#3329)
The issue exists on both NGO branches (*develop* and *develop-2.0.0*) so
the solution needs to be applied on both. For now I'm disabling this job
and tracking it in MTT-11726
Copy file name to clipboardExpand all lines: .yamato/_run-all.yml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -81,9 +81,11 @@ run_all_webgl_builds:
81
81
dependencies:
82
82
{% for project in projects.default -%}
83
83
{% for platform in test_platforms.desktop -%}
84
+
{% 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
{% 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
Copy file name to clipboardExpand all lines: .yamato/webgl-build.yml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@
25
25
26
26
{% for project in projects.default -%}
27
27
{% for platform in test_platforms.desktop -%}
28
+
{% 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
0 commit comments