Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/actions/system_info/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ runs:
if [[ -e /etc/fedora-release ]]; then
yum update -y -q && yum install -y -q procps
fi

echo "System: ${{ runner.os }}"
echo "System Architecture: ${{ runner.arch }}"
echo "CPU Info: "; lscpu
echo "RAM Info: "; free -h --si
echo "MEMORY Info: "; df -h
echo "DISK Info: "; df -hl

- if: runner.os == 'macOS'
shell: bash
run: |
echo "System: ${{ runner.os }}"
echo "System Architecture: ${{ runner.arch }}"
echo "CPU and RAM Info: "; system_profiler SPHardwareDataType
echo "MEMORY Info: "; df -h
echo "DISK Info: "; df -h

- if: runner.os == 'Windows'
shell: pwsh
Expand Down
Loading