From e4c15fc86666bc35b36415e20b221dbd4d8aa6d9 Mon Sep 17 00:00:00 2001 From: Margen67 Date: Sat, 25 Jan 2020 21:09:21 -0800 Subject: [PATCH] [CI] Print CPU --- .appveyor.yml | 3 +++ .azure-pipelines.yml | 5 +++++ .github/workflows/main.yml | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 9ddb6ac06..6153a22ae 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -29,6 +29,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