File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 80
80
81
81
- name : Clean workspace (very aggressive)
82
82
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}"
84
91
85
92
- name : Checkout
86
93
uses : actions/checkout@v4
@@ -224,7 +231,14 @@ jobs:
224
231
echo "CI_CACHE=${{ runner.temp }}/.nbs-cache" >> $GITHUB_ENV
225
232
226
233
- 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}"
228
242
229
243
- name : Checkout
230
244
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments