[CI] Print CPU
This commit is contained in:
parent
9c090d09af
commit
298bb04791
|
@ -25,6 +25,9 @@ pull_requests:
|
|||
|
||||
image: Visual Studio 2019
|
||||
|
||||
init:
|
||||
- wmic cpu get caption, deviceid, name, numberofcores, maxclockspeed, status
|
||||
|
||||
install:
|
||||
- xb setup
|
||||
|
||||
|
|
|
@ -39,7 +39,12 @@ jobs:
|
|||
cpu_arch: AVX
|
||||
AVX2:
|
||||
cpu_arch: AVX2
|
||||
AVX512:
|
||||
cpu_arch: AVX512
|
||||
steps:
|
||||
- script: wmic cpu get caption, deviceid, name, numberofcores, maxclockspeed, status
|
||||
displayName: 'CPU info'
|
||||
|
||||
- script: xb setup
|
||||
displayName: 'Setup'
|
||||
|
||||
|
|
|
@ -38,6 +38,10 @@ jobs:
|
|||
matrix:
|
||||
cpu_arch: [AVX, AVX2, AVX512]
|
||||
steps:
|
||||
- name: CPU info
|
||||
run: wmic cpu get caption, deviceid, name, numberofcores, maxclockspeed, status
|
||||
shell: cmd
|
||||
|
||||
- uses: actions/checkout@master
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
|
Loading…
Reference in New Issue