diff options
| author | 5an7y-Microsoft <[email protected]> | 2026-03-12 16:58:17 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-12 16:58:17 -0700 |
| commit | a28a07191667b381e000bccc453dbfce9d8d4251 (patch) | |
| tree | 05dcb3395a0d4881496c2e084823a4c0a1e09f58 /Build-AllSamples.ps1 | |
| parent | 3e597cce705fd13188f3a5d77255481758ae74ae (diff) | |
| parent | ed0aa30768bfd2576761e761a7da6ce6bfd4ca7c (diff) | |
Merge pull request #1353 from microsoft/user/jvalesmena/wdk-test-infra-changes
Making INF verifier and option to the build all samples PS script
Diffstat (limited to 'Build-AllSamples.ps1')
| -rw-r--r-- | Build-AllSamples.ps1 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Build-AllSamples.ps1 b/Build-AllSamples.ps1 index 6b3a1976..6b2e1661 100644 --- a/Build-AllSamples.ps1 +++ b/Build-AllSamples.ps1 @@ -40,6 +40,7 @@ param( [string[]]$Configurations = @(if ([string]::IsNullOrEmpty($env:WDS_Configuration)) { ('Debug', 'Release') } else { $env:WDS_Configuration }), [string[]]$Platforms = @(if ([string]::IsNullOrEmpty($env:WDS_Platform)) { ('x64', 'arm64') } else { $env:WDS_Platform }), [string]$LogFilesDirectory = (Join-Path (Get-Location) "_logs"), + [string]$InfOptions = "", [int]$ThrottleLimit ) @@ -68,4 +69,4 @@ foreach ($file in $solutionFiles) { } } -.\Build-SampleSet -SampleSet $sampleSet -Configurations $Configurations -Platform $Platforms -LogFilesDirectory $LogFilesDirectory -Verbose:$Verbose -ThrottleLimit $ThrottleLimit +.\Build-SampleSet -SampleSet $sampleSet -Configurations $Configurations -Platform $Platforms -LogFilesDirectory $LogFilesDirectory -Verbose:$Verbose -ThrottleLimit $ThrottleLimit -InfOptions $InfOptions |
