From 70f5c5e7b62b86d3367e88bad6c0cfa270ba546e Mon Sep 17 00:00:00 2001 From: michal-chrobot Date: Wed, 20 Aug 2025 14:53:18 +0200 Subject: [PATCH 1/2] Updated wrench options and regenerated recipes --- .yamato/wrench/recipe-regeneration.yml | 4 ++-- .yamato/wrench/wrench_config.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.yamato/wrench/recipe-regeneration.yml b/.yamato/wrench/recipe-regeneration.yml index 901d59cfb3..71a75e3978 100644 --- a/.yamato/wrench/recipe-regeneration.yml +++ b/.yamato/wrench/recipe-regeneration.yml @@ -9,14 +9,14 @@ test_-_wrench_jobs_up_to_date: type: Unity::VM flavor: b1.large commands: - - command: dotnet run --project Tools\CI\NGO.Cookbook.csproj + - command: dotnet run --project Tools/CI/NGO.Cookbook.csproj - command: |- if [ -n "$(git status --porcelain -- .yamato/wrench)" ]; then git status echo "Your repo is not clean - diff output:" git diff echo "You must run recipe generation after updating recipes to update the generated YAML!" - echo "Run 'dotnet run --project Tools\CI\NGO.Cookbook.csproj' from the root of your repository to regenerate all job definitions created by wrench." + echo "Run 'dotnet run --project Tools/CI/NGO.Cookbook.csproj' from the root of your repository to regenerate all job definitions created by wrench." exit 1 fi variables: diff --git a/.yamato/wrench/wrench_config.json b/.yamato/wrench/wrench_config.json index 4cc72c1d16..b01a612437 100644 --- a/.yamato/wrench/wrench_config.json +++ b/.yamato/wrench/wrench_config.json @@ -33,5 +33,5 @@ "branch_pattern": "ReleaseSlash", "wrench_version": "1.0.1.0", "pvp_exemption_path": ".yamato/wrench/pvp-exemptions.json", - "cs_project_path": "Tools\\CI\\NGO.Cookbook.csproj" + "cs_project_path": "Tools/CI/NGO.Cookbook.csproj" } \ No newline at end of file From 5e736a15a61b0671b3ed3c63f7f7c0981ecba173 Mon Sep 17 00:00:00 2001 From: michal-chrobot Date: Wed, 20 Aug 2025 14:53:32 +0200 Subject: [PATCH 2/2] correction --- Tools/CI/Settings/NGOSettings.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Tools/CI/Settings/NGOSettings.cs b/Tools/CI/Settings/NGOSettings.cs index b80600fdbb..f8cfd8ee04 100644 --- a/Tools/CI/Settings/NGOSettings.cs +++ b/Tools/CI/Settings/NGOSettings.cs @@ -33,10 +33,8 @@ public NGOSettings() { Wrench = new WrenchSettings( packagesRootPaths, - PackageOptions, - false, - false, - @"Tools\CI\NGO.Cookbook.csproj"); // There should be fix soon and there should be no need of specifying the path + PackageOptions + ); Wrench.PvpProfilesToCheck = new HashSet() { "supported" }; }