diff --git a/.appveyor.yml b/.appveyor.yml index a3f546156..c6103bc57 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -25,6 +25,9 @@ pull_requests: image: Visual Studio 2019 +init: + - wmic cpu get caption, deviceid, name, numberofcores, maxclockspeed, status + install: - xb setup diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 7a890652b..44e5fa151 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -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' diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 94349a7a7..c2717a2b2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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