Skip to content

Commit 9913a20

Browse files
committed
Disable print-cpu-info on Windows
1 parent c1137c7 commit 9913a20

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/actions/print-cpu-info/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ runs:
1111
run: cat /proc/cpuinfo
1212
shell: sh
1313

14-
- if: ${{ runner.os == 'Windows' }}
14+
# TODO: wmic is no longer available by default on Windows, it seems. We should replace it.
15+
- if: ${{ runner.os == 'Windows' && false }}
1516
run: wmic cpu get caption, deviceid, name, numberofcores, maxclockspeed, status
1617
shell: cmd

0 commit comments

Comments
 (0)