Skip to content

Commit

Permalink
fixup! dump CI machine info
Browse files Browse the repository at this point in the history
  • Loading branch information
ugexe committed Oct 22, 2023
1 parent 037c98c commit 0c857e1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@ jobs:
with:
raku-version: ${{ matrix.raku-version }}

- name: systeminfo
if: runner.os == 'Windows'
run: systeminfo

- name: wmic memorychip get capacity
if: runner.os == 'Windows'
run: wmic memorychip get capacity

- name: wmic cpu get name, maxclockspeed, numberofcores, numberoflogicalprocessors
if: runner.os == 'Windows'
run: wmic cpu get name, maxclockspeed, numberofcores, numberoflogicalprocessors

- name: fsutil fsinfo drives
if: runner.os == 'Windows'
run: fsutil fsinfo drives

- name: Workaround for flakey GitHub Actions precompilation errors on Windows
if: runner.os == 'Windows'
run: echo "RAKUDO_MAX_THREADS=4" >> $env:GITHUB_ENV
Expand Down

0 comments on commit 0c857e1

Please sign in to comment.