Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
"com.unity.netcode.gameobjects/**/*",
"Examples/**/*",
"testproject/**/*",
"minimalproject/**/*",
"testproject-tools-integration/**/*"
"minimalproject/**/*"
],
"packageRules": [
// Run unity-upm-project and unity-upm-package only on weekends to reduce PR noise
Expand Down
4 changes: 2 additions & 2 deletions .yamato/wrench/recipe-regeneration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .yamato/wrench/wrench_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
8 changes: 3 additions & 5 deletions Tools/CI/Settings/NGOSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,10 @@ 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<string>() { "supported" };
Wrench.PvpProfilesToCheck = new HashSet<string>() { "supported" };
}

public WrenchSettings Wrench { get; private set; }
Expand Down