print some env vars for win ci

This commit is contained in:
Concedo 2024-11-01 23:58:41 +08:00
parent 2a07f2dc2c
commit 4ae06b4a64
2 changed files with 18 additions and 0 deletions

View file

@ -33,6 +33,15 @@ jobs:
run: | run: |
echo "$(Get-Location)\w64devkit\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8 echo "$(Get-Location)\w64devkit\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
- name: Print System Environment Variables
id: printvars
run: |
echo "Number of processors: $NUMBER_OF_PROCESSORS"
echo "Processor Architecture: $PROCESSOR_ARCHITECTURE"
echo "Computer Name: $COMPUTERNAME"
wmic cpu get name
wmic os get TotalVisibleMemorySize, FreePhysicalMemory
- name: Build Non-CUDA - name: Build Non-CUDA
id: make_build id: make_build
run: | run: |

View file

@ -33,6 +33,15 @@ jobs:
run: | run: |
echo "$(Get-Location)\w64devkit\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8 echo "$(Get-Location)\w64devkit\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
- name: Print System Environment Variables
id: printvars
run: |
echo "Number of processors: $NUMBER_OF_PROCESSORS"
echo "Processor Architecture: $PROCESSOR_ARCHITECTURE"
echo "Computer Name: $COMPUTERNAME"
wmic cpu get name
wmic os get TotalVisibleMemorySize, FreePhysicalMemory
- name: Build Non-CUDA - name: Build Non-CUDA
id: make_build id: make_build
run: | run: |