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 8080
8181name : 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}" || true  
89+           echo "show everything in XDG_CACHE_HOME" 
90+           ls -la "${XDG_CACHE_HOME}" || true  
8491
8592name : Checkout 
8693        uses : actions/checkout@v4 
@@ -224,7 +231,14 @@ jobs:
224231          echo "CI_CACHE=${{ runner.temp }}/.nbs-cache" >> $GITHUB_ENV 
225232
226233name : 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}" || true  
240+           echo "show everything in XDG_CACHE_HOME" 
241+           ls -la "${XDG_CACHE_HOME}" || true  
228242
229243name : Checkout 
230244        uses : actions/checkout@v4 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments