Skip to content

Commit 08384d0

Browse files
committed
ci: debug show workspace information
1 parent 8cafedb commit 08384d0

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,14 @@ jobs:
8080
8181
- name: Clean workspace (very aggressive)
8282
if: contains(matrix.builder, 'self-hosted')
83-
run: rm -rf "$GITHUB_WORKSPACE"/*
83+
run: |
84+
rm -rf "$GITHUB_WORKSPACE"/*
85+
echo "show everything in gh workspace after nuking"
86+
ls -la "${GITHUB_WORKSPACE}"
87+
echo "show everything in CI_CACHE dir"
88+
ls -la "${CI_CACHE}"
89+
echo "show everything in XDG_CACHE_HOME"
90+
ls -la "${XDG_CACHE_HOME}"
8491
8592
- name: Checkout
8693
uses: actions/checkout@v4
@@ -224,7 +231,14 @@ jobs:
224231
echo "CI_CACHE=${{ runner.temp }}/.nbs-cache" >> $GITHUB_ENV
225232
226233
- name: Clean workspace (very aggressive)
227-
run: rm -rf "$GITHUB_WORKSPACE"/*
234+
run: |
235+
rm -rf "$GITHUB_WORKSPACE"/*
236+
echo "show everything in gh workspace after nuking"
237+
ls -la "${GITHUB_WORKSPACE}"
238+
echo "show everything in CI_CACHE dir"
239+
ls -la "${CI_CACHE}"
240+
echo "show everything in XDG_CACHE_HOME"
241+
ls -la "${XDG_CACHE_HOME}"
228242
229243
- name: Checkout
230244
uses: actions/checkout@v4

0 commit comments

Comments
 (0)