Browse Source

Print CPU info in output

tags/v0.3.10^2
Leonard Lausen 6 years ago
parent
commit
5a709b8340
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      .github/workflows/dynamic_arch.yml

+ 11
- 0
.github/workflows/dynamic_arch.yml View File

@@ -26,6 +26,17 @@ jobs:
restore-keys: |
${{ runner.os }}-ccache

- name: Print system information
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
cat /proc/cpuinfo
elif [ "$RUNNER_OS" == "macOS" ]; then
sysctl -a | grep machdep.cpu
else
echo "$RUNNER_OS not supported"
exit 1
fi

- name: Install Dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then


Loading…
Cancel
Save