# HG changeset patch # User Markus Mützel # Date 1637567066 -3600 # Node ID 7fc817342393230715931ec1797fcad8ebacede2 # Parent c08c73d96985c2face1a3c5598e45ebfa84a1a05 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. diff -r c08c73d96985 -r 7fc817342393 .github/workflows/make.yaml --- 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