diff options
| author | 5an7y <[email protected]> | 2026-03-12 14:20:07 -0700 |
|---|---|---|
| committer | 5an7y <[email protected]> | 2026-03-12 14:20:07 -0700 |
| commit | ed0aa30768bfd2576761e761a7da6ce6bfd4ca7c (patch) | |
| tree | 5c165092a7bf8bce8ab4c7ca9e92a66051625e30 /Build-SampleSet.ps1 | |
| parent | ac36f023d892cd68f8ceb6dfe113e88056ef169a (diff) | |
WDK test infra changes
Diffstat (limited to 'Build-SampleSet.ps1')
| -rw-r--r-- | Build-SampleSet.ps1 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Build-SampleSet.ps1 b/Build-SampleSet.ps1 index 8638d517..25346cda 100644 --- a/Build-SampleSet.ps1 +++ b/Build-SampleSet.ps1 @@ -5,6 +5,7 @@ param( [string[]]$Platforms = @(if ([string]::IsNullOrEmpty($env:WDS_Platform)) { "x64" } else { $env:WDS_Platform }), $LogFilesDirectory = (Get-Location), [string]$ReportFileName = $(if ([string]::IsNullOrEmpty($env:WDS_ReportFileName)) { "_overview" } else { $env:WDS_ReportFileName }), + [string]$InfOptions = "", [int]$ThrottleLimit = 0 ) @@ -135,6 +136,11 @@ if ($build_environment -match '^EWDK') { # $InfVerif_AdditionalOptions=($build_number -le 22621 ? "/sw1284 /sw1285 /sw1293 /sw2083 /sw2086" : "/samples") +# Override InfVerif_AdditionalOptions if InfOptions parameter was provided +if (-not [string]::IsNullOrEmpty($InfOptions)) { + $InfVerif_AdditionalOptions = $InfOptions +} + # # Determine exclusions. # |
