From f90ff66762654bb5d03b6c14c994677c5bfe7c7b Mon Sep 17 00:00:00 2001 From: Richard Murillo Date: Tue, 10 Sep 2024 11:34:43 -0700 Subject: [PATCH] Update RunPerfTests.ps1 to enable roll-forward Signed-off-by: Richard Murillo --- build/scripts/perf/RunPerfTests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/perf/RunPerfTests.ps1 b/build/scripts/perf/RunPerfTests.ps1 index a5251a9..398f8ba 100644 --- a/build/scripts/perf/RunPerfTests.ps1 +++ b/build/scripts/perf/RunPerfTests.ps1 @@ -15,7 +15,7 @@ try { $projectFullPath = Join-Path $perftestRootFolder $project & dotnet restore $projectFullPath -verbosity detailed & dotnet build -c Release --no-incremental $projectFullPath - $comandArguments = "run -c Release --no-build --project $projectFullPath -- --warmupCount 2 --invocationCount 1 --runOncePerIteration --memory --exporters JSON --artifacts $output" + $comandArguments = "run -c Release --no-build --roll-forward Major --project $projectFullPath -- --warmupCount 2 --invocationCount 1 --runOncePerIteration --memory --exporters JSON --artifacts $output" if ($ci) { $comandArguments = "$comandArguments --stopOnFirstError --keepFiles" }