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 f13f5d9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ install:
# Enable x64 Native Tools
- '"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64'

- systeminfo
- wmic memorychip get capacity
- wmic cpu get name, maxclockspeed, numberofcores, numberoflogicalprocessors
- fsutil fsinfo drives

# Workaround for path length errors during precompilation of longer repo names
- SET ZEF_CONFIG_TEMPDIR=C:\tmp
- cd C:\
Expand Down
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 f13f5d9

Please sign in to comment.