diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c60bbf18..8d9b7c48 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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