@@ -53,16 +53,21 @@ jobs:
53
53
$vddSln = "Virtual Display Driver (HDR)/MTTVDD.sln"
54
54
if (Test-Path $vddSln) {
55
55
Write-Output "Found VDD solution: $vddSln"
56
- msbuild $vddSln /p:Configuration=$env:BUILD_CONFIGURATION /p:Platform=${{ matrix.platform }}
57
- Write-Output "VDD build completed for ${{ matrix.platform }}"
56
+ Write-Output "Running MSBuild..."
57
+ msbuild $vddSln /p:Configuration=$env:BUILD_CONFIGURATION /p:Platform=${{ matrix.platform }} /verbosity:minimal
58
+ if ($LASTEXITCODE -eq 0) {
59
+ Write-Output "✅ VDD build completed successfully for ${{ matrix.platform }}"
60
+ } else {
61
+ Write-Output "❌ VDD build failed with exit code: $LASTEXITCODE"
62
+ }
58
63
59
64
# List build directory
60
65
$buildDir = "Virtual Display Driver (HDR)\${{ matrix.platform }}\$env:BUILD_CONFIGURATION\MttVDD"
61
66
if (Test-Path $buildDir) {
62
- Write-Output "VDD Build outputs in $buildDir:"
67
+ Write-Output "VDD Build outputs in ${ buildDir} :"
63
68
Get-ChildItem $buildDir | ForEach-Object { Write-Output " - $($_.Name)" }
64
69
} else {
65
- Write-Output "❌ Build directory not found: $buildDir"
70
+ Write-Output "❌ Build directory not found: ${ buildDir} "
66
71
}
67
72
} else {
68
73
Write-Output "❌ VDD solution file not found at: $vddSln"
77
82
$vadSln = "Virtual-Audio-Driver (Latest Stable)/VirtualAudioDriver.sln"
78
83
if (Test-Path $vadSln) {
79
84
Write-Output "Found VAD solution: $vadSln"
80
- msbuild $vadSln /p:Configuration=$env:BUILD_CONFIGURATION /p:Platform=${{ matrix.platform }}
81
- Write-Output "VAD build completed for ${{ matrix.platform }}"
85
+ Write-Output "Running MSBuild..."
86
+ msbuild $vadSln /p:Configuration=$env:BUILD_CONFIGURATION /p:Platform=${{ matrix.platform }} /verbosity:minimal
87
+ if ($LASTEXITCODE -eq 0) {
88
+ Write-Output "✅ VAD build completed successfully for ${{ matrix.platform }}"
89
+ } else {
90
+ Write-Output "❌ VAD build failed with exit code: $LASTEXITCODE"
91
+ }
82
92
83
93
# List build outputs (search for standard driver output locations)
84
94
Write-Output "Searching for VAD build outputs..."
@@ -160,6 +170,7 @@ jobs:
160
170
id : generate_tag
161
171
run : |
162
172
$releaseTag = (Get-Date).ToString('yy.MM.dd')
173
+ Write-Output "Generated release tag: $releaseTag"
163
174
echo "RELEASE_TAG=$releaseTag" >> $env:GITHUB_ENV
164
175
165
176
# Submit VDD to SignPath (only for main branch and tags)
0 commit comments