File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 2828
2929 - name : 🧹 Free up disk space
3030 run : |
31- echo "Remove largs / unnecessary packages / tools"
31+ df -h # Optional: Check space before build
3232 # Remove large, unnecessary packages/tools
3333 sudo rm -rf /usr/share/dotnet
3434 sudo rm -rf /usr/local/lib/android
@@ -106,7 +106,10 @@ jobs:
106106
107107 - name : Clean Docker to free up space
108108 # NOTE: otherwise the runner tends to run out of disk space roughly 75% of the time
109- run : docker system prune -af
109+ run : |
110+ df -h # Optional: Check space before build
111+ docker system prune -af
112+ df -h # Optional: Check space before build
110113
111114 - name : Build and push Docker Jupyter singleuser image with GPU support
112115 id : docker_build_gpu
You can’t perform that action at this time.
0 commit comments