Skip to content

Commit 4dde7be

Browse files
authored
FIX: add various packages that throw compile errors on trunk to DependantsToIgnoreInPreviewApv (#2215)
1 parent b40d8c1 commit 4dde7be

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.yamato/wrench/wrench_config.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,15 @@
1919
"coverageCommands": [
2020
"generateAdditionalMetrics;generateHtmlReport;assemblyFilters:ASSEMBLY_NAME;pathReplacePatterns:@*,,**/PackageCache/,;sourcePaths:YAMATO_SOURCE_DIR/Packages;"
2121
],
22-
"dependantsToIgnoreInPreviewApv": {}
22+
"dependantsToIgnoreInPreviewApv": {
23+
"6000.3": [
24+
"com.unity.polyspatial",
25+
"com.unity.polyspatial.extensions",
26+
"com.unity.polyspatial.visionos",
27+
"com.unity.polyspatial.xr",
28+
"com.unity.xr.visionos"
29+
]
30+
}
2331
}
2432
},
2533
"releasing_packages": [

Tools/CI/Settings/InputSystemSettings.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using RecipeEngine.Modules.Wrench.Models;
55
using RecipeEngine.Modules.Wrench.Settings;
66
using RecipeEngine.Platforms;
7+
using RecipeEngine.Unity.Abstractions.Editors;
78

89
namespace InputSystem.Cookbook.Settings;
910

@@ -65,6 +66,22 @@ public InputSystemSettings()
6566
// change default images as per Dictionary above.
6667
Wrench.Packages["com.unity.inputsystem"].EditorPlatforms = ImageOverrides;
6768

69+
// ignore packages listed below in PreviewAPV
70+
Wrench.Packages["com.unity.inputsystem"].DependantsToIgnoreInPreviewApv = new Dictionary<Editor, ISet<string>>()
71+
{
72+
{
73+
new Editor("6000.3", ""),
74+
new HashSet<string>()
75+
{
76+
"com.unity.polyspatial",
77+
"com.unity.polyspatial.visionos",
78+
"com.unity.polyspatial.extensions",
79+
"com.unity.polyspatial.xr",
80+
"com.unity.xr.visionos"
81+
}
82+
}
83+
};
84+
6885
Wrench.PvpProfilesToCheck = new HashSet<string>() { "supported" };
6986
}
7087

0 commit comments

Comments
 (0)