refactor(burn-in): remove -SkipArtifact; build.ps1 always produces dist/

This commit is contained in:
Simone
2026-05-12 22:00:43 +02:00
parent 36cdd1fc25
commit a6acf1eef7
4 changed files with 6 additions and 36 deletions
-2
View File
@@ -49,7 +49,6 @@ param(
[int] $Rounds = 3,
[int] $Parallelism = 4,
[string] $BuildCommand = 'powershell -NoProfile -NonInteractive -ExecutionPolicy Bypass -File build.ps1',
[switch] $NoSkipArtifact,
[int] $RoundTimeoutMinutes = 60
)
@@ -74,7 +73,6 @@ $burnInParams = @{
Rounds = $Rounds
RoundTimeoutMinutes = $RoundTimeoutMinutes
}
if (-not $NoSkipArtifact) { $burnInParams['SkipArtifact'] = $true }
& "$scriptDir\Test-CapacityBurnIn.ps1" @burnInParams