Skip to content

Commit 20f2952

Browse files
ci: Wrench settings update (#3612)
## Purpose of this PR Quick update of options that are no longer applicable ### Jira ticket N/A ## Documentation N/A ## Testing & QA N/A ## Backport Will do
1 parent 24df842 commit 20f2952

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

.github/renovate.json5

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
"com.unity.netcode.gameobjects/**/*",
1717
"Examples/**/*",
1818
"testproject/**/*",
19-
"minimalproject/**/*",
20-
"testproject-tools-integration/**/*"
19+
"minimalproject/**/*"
2120
],
2221
"packageRules": [
2322
// Run unity-upm-project and unity-upm-package only on weekends to reduce PR noise

.yamato/wrench/recipe-regeneration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ test_-_wrench_jobs_up_to_date:
99
type: Unity::VM
1010
flavor: b1.large
1111
commands:
12-
- command: dotnet run --project Tools\CI\NGO.Cookbook.csproj
12+
- command: dotnet run --project Tools/CI/NGO.Cookbook.csproj
1313
- command: |-
1414
if [ -n "$(git status --porcelain -- .yamato/wrench)" ]; then
1515
git status
1616
echo "Your repo is not clean - diff output:"
1717
git diff
1818
echo "You must run recipe generation after updating recipes to update the generated YAML!"
19-
echo "Run 'dotnet run --project Tools\CI\NGO.Cookbook.csproj' from the root of your repository to regenerate all job definitions created by wrench."
19+
echo "Run 'dotnet run --project Tools/CI/NGO.Cookbook.csproj' from the root of your repository to regenerate all job definitions created by wrench."
2020
exit 1
2121
fi
2222
variables:

.yamato/wrench/wrench_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
"branch_pattern": "ReleaseSlash",
3434
"wrench_version": "1.0.1.0",
3535
"pvp_exemption_path": ".yamato/wrench/pvp-exemptions.json",
36-
"cs_project_path": "Tools\\CI\\NGO.Cookbook.csproj"
36+
"cs_project_path": "Tools/CI/NGO.Cookbook.csproj"
3737
}

Tools/CI/Settings/NGOSettings.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,10 @@ public NGOSettings()
3232
{
3333
Wrench = new WrenchSettings(
3434
packagesRootPaths,
35-
PackageOptions,
36-
false,
37-
false,
38-
@"Tools\CI\NGO.Cookbook.csproj"); // There should be fix soon and there should be no need of specifying the path
35+
PackageOptions
36+
);
3937

40-
Wrench.PvpProfilesToCheck = new HashSet<string>() { "supported" };
38+
Wrench.PvpProfilesToCheck = new HashSet<string>() { "supported" };
4139
}
4240

4341
public WrenchSettings Wrench { get; private set; }

0 commit comments

Comments
 (0)