Skip to content

Commit 4ae06b4

Browse files
committed
print some env vars for win ci
1 parent 2a07f2d commit 4ae06b4

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/kcpp-build-release-win-full-cu12.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ jobs:
3333
run: |
3434
echo "$(Get-Location)\w64devkit\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
3535
36+
- name: Print System Environment Variables
37+
id: printvars
38+
run: |
39+
echo "Number of processors: $NUMBER_OF_PROCESSORS"
40+
echo "Processor Architecture: $PROCESSOR_ARCHITECTURE"
41+
echo "Computer Name: $COMPUTERNAME"
42+
wmic cpu get name
43+
wmic os get TotalVisibleMemorySize, FreePhysicalMemory
44+
3645
- name: Build Non-CUDA
3746
id: make_build
3847
run: |

.github/workflows/kcpp-build-release-win-full.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ jobs:
3333
run: |
3434
echo "$(Get-Location)\w64devkit\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
3535
36+
- name: Print System Environment Variables
37+
id: printvars
38+
run: |
39+
echo "Number of processors: $NUMBER_OF_PROCESSORS"
40+
echo "Processor Architecture: $PROCESSOR_ARCHITECTURE"
41+
echo "Computer Name: $COMPUTERNAME"
42+
wmic cpu get name
43+
wmic os get TotalVisibleMemorySize, FreePhysicalMemory
44+
3645
- name: Build Non-CUDA
3746
id: make_build
3847
run: |

0 commit comments

Comments
 (0)