changeset 30317:7fc817342393

GitHub-CI: Display processor name of selected runner on Windows. * .github/workflows/make.yaml (windows): Add new step that displays the processor name of the selected Windows runner. Does that correlate to the Fortran compiler "getting stuck" intermittently during the configure step.
author Markus Mützel <markus.muetzel@gmx.de>
date Mon, 22 Nov 2021 08:44:26 +0100
parents c08c73d96985
children 08f6fbcd33c6
files .github/workflows/make.yaml
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/make.yaml	Sun Nov 21 20:35:10 2021 -0800
+++ b/.github/workflows/make.yaml	Mon Nov 22 08:44:26 2021 +0100
@@ -329,6 +329,14 @@
       PERL5SHELL: bash -l -c
 
     steps:
+      - name: get CPU name
+        # The runners for the 32-bit target sometimes get stuck in configure
+        # when using the Fortran compiler.
+        # Does that error depend on the processor of the selected runner?
+        shell: pwsh
+        run : |
+          Get-CIMInstance -Class Win32_Processor | Select-Object -Property Name
+
       - uses: msys2/setup-msys2@v2
         with:
           update: true