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