Skip to content

Commit a590b0c

Browse files
syoyoclaude
andcommitted
Remove compiler and cmake version from Windows build info
Simplifies build info and avoids PowerShell stderr handling issues with cl.exe output. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 8842a0c commit a590b0c

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

.github/workflows/release-windows-arm64.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ jobs:
8282
- name: Create build info
8383
shell: powershell
8484
run: |
85-
$compilerVersion = (& cl.exe 2>&1 | Select-String 'Version' | ForEach-Object { $_.Line }).Trim()
86-
$cmakeVersion = (cmake --version | Select-Object -First 1).Trim()
8785
$buildInfo = @"
8886
OpenUSD Build Information
8987
========================
@@ -102,8 +100,6 @@ jobs:
102100
103101
Platform:
104102
- OS: Windows Server 2022 ARM64
105-
- Compiler: MSVC $compilerVersion
106-
- CMake: $cmakeVersion
107103
108104
Library Size:
109105
$(if (Test-Path dist-minsizerel-ms\lib\lteusd_ms.dll) {

.github/workflows/release-windows.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ jobs:
8282
- name: Create build info
8383
shell: powershell
8484
run: |
85-
$compilerVersion = (& cl.exe 2>&1 | Select-String 'Version' | ForEach-Object { $_.Line }).Trim()
86-
$cmakeVersion = (cmake --version | Select-Object -First 1).Trim()
8785
$buildInfo = @"
8886
OpenUSD Build Information
8987
========================
@@ -102,8 +100,6 @@ jobs:
102100
103101
Platform:
104102
- OS: Windows Server 2022
105-
- Compiler: MSVC $compilerVersion
106-
- CMake: $cmakeVersion
107103
108104
Library Size:
109105
$(if (Test-Path dist-minsizerel-ms\lib\lteusd_ms.dll) {

0 commit comments

Comments
 (0)