From 41f48459748512f5d996d016d50c1e29ad5376f5 Mon Sep 17 00:00:00 2001 From: Tom Proctor Date: Wed, 26 Nov 2025 13:19:52 +0000 Subject: [PATCH] more debug Change-Id: I94ffc9c7522121327307d6ca8c683216507373c5 Signed-off-by: Tom Proctor --- .github/workflows/win.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/win.yml b/.github/workflows/win.yml index c7afddbf3..56abc1a03 100644 --- a/.github/workflows/win.yml +++ b/.github/workflows/win.yml @@ -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: |