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
-7
View File
@@ -124,10 +124,6 @@ param(
[string] $BuildCommand = '',
# Skip artifact packaging and collection in every child job.
# Set this for burn-in and smoke runs that use delay-only build commands.
[switch] $SkipArtifact,
[ValidateRange(1, 10)]
[int] $Parallelism = 4,
@@ -215,9 +211,6 @@ for ($r = 1; $r -le $Rounds; $r++) {
if ($BuildCommand -ne '') {
$argList.Add('-BuildCommand'); $argList.Add($BuildCommand)
}
if ($SkipArtifact) {
$argList.Add('-SkipArtifact')
}
$argArray = $argList.ToArray()