diff --git a/.github/workflows/cpu_info.yml b/.github/workflows/cpu_info.yml new file mode 100644 index 0000000000..718ec23526 --- /dev/null +++ b/.github/workflows/cpu_info.yml @@ -0,0 +1,13 @@ +name: CPU info + +on: + workflow_dispatch: + +jobs: + cpu_info: + name: Get CPU info on runners + runs-on: ubuntu-latest + steps: + - name: Get CPU info + run: | + lscpu | egrep 'Model name|Socket|Thread|NUMA|CPU\(s\)' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4459b4f0ae..81f4af8862 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,6 +10,14 @@ on: jobs: + cpu_info: + name: Get CPU info on runners + runs-on: ubuntu-latest + steps: + - name: Get CPU info + run: | + lscpu | egrep 'Model name|Socket|Thread|NUMA|CPU\(s\)' + ufmt: name: Code formatting and sorting with ufmt runs-on: ubuntu-latest