update prints

This commit is contained in:
Concedo 2024-11-15 14:10:02 +08:00
parent df080b074d
commit d595a80abc
3 changed files with 15 additions and 6 deletions

View file

@ -36,9 +36,9 @@ jobs:
- name: Print System Environment Variables - name: Print System Environment Variables
id: printvars id: printvars
run: | run: |
echo "Number of processors: $NUMBER_OF_PROCESSORS" echo "Number of processors: ${env:NUMBER_OF_PROCESSORS}"
echo "Processor Architecture: $PROCESSOR_ARCHITECTURE" echo "Processor Architecture: ${env:PROCESSOR_ARCHITECTURE}"
echo "Computer Name: $COMPUTERNAME" echo "Computer Name: ${env:COMPUTERNAME}"
wmic cpu get name wmic cpu get name
wmic os get TotalVisibleMemorySize, FreePhysicalMemory wmic os get TotalVisibleMemorySize, FreePhysicalMemory

View file

@ -36,9 +36,9 @@ jobs:
- name: Print System Environment Variables - name: Print System Environment Variables
id: printvars id: printvars
run: | run: |
echo "Number of processors: $NUMBER_OF_PROCESSORS" echo "Number of processors: ${env:NUMBER_OF_PROCESSORS}"
echo "Processor Architecture: $PROCESSOR_ARCHITECTURE" echo "Processor Architecture: ${env:PROCESSOR_ARCHITECTURE}"
echo "Computer Name: $COMPUTERNAME" echo "Computer Name: ${env:COMPUTERNAME}"
wmic cpu get name wmic cpu get name
wmic os get TotalVisibleMemorySize, FreePhysicalMemory wmic os get TotalVisibleMemorySize, FreePhysicalMemory

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: ${env:NUMBER_OF_PROCESSORS}"
echo "Processor Architecture: ${env:PROCESSOR_ARCHITECTURE}"
echo "Computer Name: ${env: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: |