diff --git a/.yamato/wrench/wrench_config.json b/.yamato/wrench/wrench_config.json index 8a4869cc8e..497f80ca7d 100644 --- a/.yamato/wrench/wrench_config.json +++ b/.yamato/wrench/wrench_config.json @@ -19,7 +19,15 @@ "coverageCommands": [ "generateAdditionalMetrics;generateHtmlReport;assemblyFilters:ASSEMBLY_NAME;pathReplacePatterns:@*,,**/PackageCache/,;sourcePaths:YAMATO_SOURCE_DIR/Packages;" ], - "dependantsToIgnoreInPreviewApv": {} + "dependantsToIgnoreInPreviewApv": { + "6000.3": [ + "com.unity.polyspatial", + "com.unity.polyspatial.extensions", + "com.unity.polyspatial.visionos", + "com.unity.polyspatial.xr", + "com.unity.xr.visionos" + ] + } } }, "releasing_packages": [ diff --git a/Tools/CI/Settings/InputSystemSettings.cs b/Tools/CI/Settings/InputSystemSettings.cs index 75b609f5f1..1ff9e8466a 100644 --- a/Tools/CI/Settings/InputSystemSettings.cs +++ b/Tools/CI/Settings/InputSystemSettings.cs @@ -4,6 +4,7 @@ using RecipeEngine.Modules.Wrench.Models; using RecipeEngine.Modules.Wrench.Settings; using RecipeEngine.Platforms; +using RecipeEngine.Unity.Abstractions.Editors; namespace InputSystem.Cookbook.Settings; @@ -65,6 +66,22 @@ public InputSystemSettings() // change default images as per Dictionary above. Wrench.Packages["com.unity.inputsystem"].EditorPlatforms = ImageOverrides; + // ignore packages listed below in PreviewAPV + Wrench.Packages["com.unity.inputsystem"].DependantsToIgnoreInPreviewApv = new Dictionary>() + { + { + new Editor("6000.3", ""), + new HashSet() + { + "com.unity.polyspatial", + "com.unity.polyspatial.visionos", + "com.unity.polyspatial.extensions", + "com.unity.polyspatial.xr", + "com.unity.xr.visionos" + } + } + }; + Wrench.PvpProfilesToCheck = new HashSet() { "supported" }; }