more debug

Change-Id: I94ffc9c7522121327307d6ca8c683216507373c5
Signed-off-by: Tom Proctor <tomhjp@users.noreply.github.com>
tomhjp/win-go-brrr
Tom Proctor 2 months ago
parent cdacbb403c
commit 41f4845974
No known key found for this signature in database

@ -72,6 +72,20 @@ jobs:
# the equals signs cause great confusion.
run: go test ./... -bench . -benchtime 1x -run "^$"
- name: Check filled cache
shell: pwsh
run: |
if (Test-Path "${{ env.DEV_DRIVE }}/gocache") {
Get-ChildItem -Recurse ${{ env.DEV_DRIVE }}/gocache
} else {
Write-Host "gocache directory does not exist yet"
}
if (Test-Path "${{ env.DEV_DRIVE }}/gomodcache") {
Get-ChildItem -Recurse ${{ env.DEV_DRIVE }}/gomodcache
} else {
Write-Host "gomodcache directory does not exist yet"
}
- name: Tidy cache
shell: pwsh
run: |

Loading…
Cancel
Save