Update IddCx include path and header casing #10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Fast CI Validation | |
| on: | |
| pull_request: | |
| branches: [ main, master ] | |
| push: | |
| branches: [ main, master ] | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| - 'LICENSE*' | |
| env: | |
| BUILD_CONFIGURATION: Release | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Install Windows Driver Kit (for IddCx headers) | |
| shell: pwsh | |
| run: | | |
| $ErrorActionPreference = "Stop" | |
| choco install windowsdriverkit11 -y --no-progress | |
| if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } | |
| - name: Detect Windows SDK (windows.h) | |
| shell: pwsh | |
| run: | | |
| $ErrorActionPreference = "Stop" | |
| $kitsRoot = $null | |
| try { | |
| $kitsRoot = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows Kits\Installed Roots" -Name "KitsRoot10" -ErrorAction Stop).KitsRoot10 | |
| } catch { | |
| $kitsRoot = Join-Path ${env:ProgramFiles(x86)} "Windows Kits\10\" | |
| } | |
| if (-not $kitsRoot -or -not (Test-Path $kitsRoot)) { | |
| throw "Windows Kits root not found: $kitsRoot" | |
| } | |
| $includeRoot = Join-Path $kitsRoot "Include" | |
| if (-not (Test-Path $includeRoot)) { | |
| throw "Windows Kits Include directory not found: $includeRoot" | |
| } | |
| $best = | |
| Get-ChildItem -Path $includeRoot -Directory -ErrorAction SilentlyContinue | | |
| Where-Object { $_.Name -match '^\d+\.\d+\.\d+\.\d+$' } | | |
| Where-Object { Test-Path (Join-Path $_.FullName "um\Windows.h") } | | |
| Sort-Object -Property Name -Descending | | |
| Select-Object -First 1 | |
| if (-not $best) { | |
| throw "Could not find an SDK version directory containing um\\Windows.h under: $includeRoot" | |
| } | |
| $sdkVersion = $best.Name | |
| Write-Output "Using WindowsSdkDir: $kitsRoot" | |
| Write-Output "Using WindowsTargetPlatformVersion: $sdkVersion" | |
| "WINDOWS_SDK_DIR=$kitsRoot" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
| "WINDOWS_TARGET_PLATFORM_VERSION=$sdkVersion" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '6.0.x' | |
| - name: Quick VDD Compilation Check | |
| shell: pwsh | |
| run: | | |
| $ErrorActionPreference = "Stop" | |
| Write-Output "Performing quick VDD compilation check..." | |
| $vddSln = "Virtual Display Driver (HDR)/MTTVDD.sln" | |
| if (-not (Test-Path $vddSln)) { throw "VDD solution file not found at: $vddSln" } | |
| msbuild $vddSln /p:Configuration=$env:BUILD_CONFIGURATION /p:Platform=x64 /p:WindowsSdkDir=$env:WINDOWS_SDK_DIR /p:WindowsTargetPlatformVersion=$env:WINDOWS_TARGET_PLATFORM_VERSION /verbosity:minimal /target:Build | |
| - name: Quick VAD Compilation Check | |
| shell: pwsh | |
| run: | | |
| $ErrorActionPreference = "Stop" | |
| Write-Output "Performing quick VAD compilation check..." | |
| $vadSln = "Virtual-Audio-Driver (Latest Stable)/VirtualAudioDriver.sln" | |
| if (-not (Test-Path $vadSln)) { throw "VAD solution file not found at: $vadSln" } | |
| msbuild $vadSln /p:Configuration=$env:BUILD_CONFIGURATION /p:Platform=x64 /p:WindowsSdkDir=$env:WINDOWS_SDK_DIR /p:WindowsTargetPlatformVersion=$env:WINDOWS_TARGET_PLATFORM_VERSION /verbosity:minimal /target:Build | |