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
# There is an error 'No usable version of libssl' when it comes to building with combination of ubuntu and 2021 editor. It's not really worth to address it since
134
+
# 1) The 2021 editor will soon be out of support
135
+
# 2) We still have the same coverage by using mac and ubuntu is used in a whole bunch of different tests, so I'm quite sure it won't lead to any bug leaks
136
+
# 3) The solution could be to manually install libss1.1 (since image has libssl3 and this causes conflicts on 2021 editor related to dotnet versions and support). There were several threads on this topic which can be looked on
137
+
{% if editor != "2021.3" or platform.name != "ubuntu" %}
# There is an error 'No usable version of libssl' when it comes to building with combination of ubuntu and 2021 editor. It's not really worth to address it since
168
+
# 1) The 2021 editor will soon be out of support
169
+
# 2) We still have the same coverage by using mac and ubuntu is used in a whole bunch of different tests, so I'm quite sure it won't lead to any bug leaks
170
+
# 3) The solution could be to manually install libss1.1 (since image has libssl3 and this causes conflicts on 2021 editor related to dotnet versions and support). There were several threads on this topic which can be looked on
{% for platform in test_platforms.console_test -%}
208
220
{% for editor in validation_editors.all -%}
221
+
# When building consoles with 2023 editor there are errors related to SDK version or uninstalled components. I will disable those for now and will add to my investigation list
Copy file name to clipboardExpand all lines: .yamato/console-standalone-test.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@
15
15
{% for project in projects.default -%}
16
16
{% for platform in test_platforms.console_build -%}
17
17
{% for editor in validation_editors.all -%}
18
+
# When building consoles with 2023 editor there are errors related to SDK version or uninstalled components. I will disable those for now and will add to my investigation list
{% for platform in test_platforms.console_test -%}
59
62
{% for editor in validation_editors.all -%}
63
+
# When building consoles with 2023 editor there are errors related to SDK version or uninstalled components. I will disable those for now and will add to my investigation list
Copy file name to clipboardExpand all lines: .yamato/desktop-standalone-tests.yml
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,11 @@
13
13
{% for platform in test_platforms.desktop -%}
14
14
{% for editor in validation_editors.all -%}
15
15
{% for backend in scripting_backends -%}
16
+
# There is an error 'No usable version of libssl' when it comes to building with combination of ubuntu and 2021 editor. It's not really worth to address it since
17
+
# 1) The 2021 editor will soon be out of support
18
+
# 2) We still have the same coverage by using mac and ubuntu is used in a whole bunch of different tests, so I'm quite sure it won't lead to any bug leaks
19
+
# 3) The solution could be to manually install libss1.1 (since image has libssl3 and this causes conflicts on 2021 editor related to dotnet versions and support). There were several threads on this topic which can be looked on
20
+
{% if editor != "2021.3" or platform.name != "ubuntu" %}
# There is an error 'No usable version of libssl' when it comes to building with combination of ubuntu and 2021 editor. It's not really worth to address it since
80
+
# 1) The 2021 editor will soon be out of support
81
+
# 2) We still have the same coverage by using mac and ubuntu is used in a whole bunch of different tests, so I'm quite sure it won't lead to any bug leaks
82
+
# 3) The solution could be to manually install libss1.1 (since image has libssl3 and this causes conflicts on 2021 editor related to dotnet versions and support). There were several threads on this topic which can be looked on
83
+
{% if editor != "2021.3" or platform.name != "ubuntu" %}
# This is in essence the same job as the one above with the difference that upm-ci is used instead of upm-pvp
31
+
# The reason for using it is that I had some problems with Code Coverage which in its current form uses upm-ci but if we would use the other pack job (the one above) we would need to use upm-pvp
32
+
# I had some problems with getting it to work so as temporary solution I created this pack job which is used ONLY as a dependency of Code Coverage job (other jobs use the above definition of pack job)
33
+
# TODO: remove this job and utilize the above one for Code Coverage job. This is tracked in MTT-11383
Copy file name to clipboardExpand all lines: com.unity.netcode.gameobjects/Tests/Editor/Metrics/NetworkMetricsRegistrationTests.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ public class NetworkMetricsRegistrationTests
16
16
.ToArray();
17
17
18
18
[TestCaseSource(nameof(s_MetricTypes))]
19
-
[Ignore("Disable test while we reevaluate the assumption that INetworkMetricEvent interfaces must be reported from MLAPI.")]
19
+
[Ignore("Disable test while we reevaluate the assumption that INetworkMetricEvent interfaces must be reported from MLAPI. This is tracked in MTT-11339")]
0 commit comments