Skip to content

Commit ede3269

Browse files
committed
Print /proc/cpuinfo for the CI runner where relevant
1 parent bf85e18 commit ede3269

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.github/workflows/abi-cafe.yml

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v3
3737

38+
- name: CPU features
39+
if: matrix.os == 'ubuntu-latest'
40+
run: cat /proc/cpuinfo
41+
3842
- name: Cache cargo target dir
3943
uses: actions/cache@v3
4044
with:

.github/workflows/main.yml

+10
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ jobs:
6666
steps:
6767
- uses: actions/checkout@v3
6868

69+
- name: CPU features
70+
if: matrix.os == 'ubuntu-latest'
71+
run: cat /proc/cpuinfo
72+
6973
- name: Cache cargo target dir
7074
uses: actions/cache@v3
7175
with:
@@ -136,6 +140,9 @@ jobs:
136140
steps:
137141
- uses: actions/checkout@v3
138142

143+
- name: CPU features
144+
run: cat /proc/cpuinfo
145+
139146
- name: Prepare dependencies
140147
run: ./y.sh prepare
141148

@@ -159,6 +166,9 @@ jobs:
159166
steps:
160167
- uses: actions/checkout@v3
161168

169+
- name: CPU features
170+
run: cat /proc/cpuinfo
171+
162172
- name: Cache cargo target dir
163173
uses: actions/cache@v3
164174
with:

.github/workflows/rustc.yml

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v3
1313

14+
- name: CPU features
15+
run: cat /proc/cpuinfo
16+
1417
- name: Cache cargo target dir
1518
uses: actions/cache@v3
1619
with:
@@ -31,6 +34,9 @@ jobs:
3134
steps:
3235
- uses: actions/checkout@v3
3336

37+
- name: CPU features
38+
run: cat /proc/cpuinfo
39+
3440
- name: Cache cargo target dir
3541
uses: actions/cache@v3
3642
with:

0 commit comments

Comments
 (0)