[CI] Print CPU

This commit is contained in:
Margen67 2020-01-25 21:09:21 -08:00 committed by illusion
parent 9c090d09af
commit 298bb04791
3 changed files with 12 additions and 0 deletions

View File

@ -25,6 +25,9 @@ pull_requests:
image: Visual Studio 2019
init:
- wmic cpu get caption, deviceid, name, numberofcores, maxclockspeed, status
install:
- xb setup

View File

@ -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'

View File

@ -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