refactor(burn-in): remove -SkipArtifact; build.ps1 always produces dist/
This commit is contained in:
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user