We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b53cfb commit 03ccfd4Copy full SHA for 03ccfd4
src/ci/scripts/free-disk-space.sh
@@ -88,6 +88,23 @@ printDH "BEFORE CLEAN-UP:"
88
echo ""
89
90
91
+fast_rmdir /usr/local/share/boost || true
92
+fast_rmdir "$AGENT_TOOLSDIRECTORY" || true
93
+fast_rmdir /opt/hostedtoolcache || true
94
+fast_rmdir /usr/local/graalvm || true
95
+fast_rmdir /usr/local/share/powershell || true
96
+fast_rmdir /usr/local/share/chromium || true
97
+fast_rmdir /usr/local/lib/node_modules || true
98
+
99
100
+BEFORE=$(getAvailableSpace)
101
102
+fast_rmdir /usr/share/swift || true
103
104
+AFTER=$(getAvailableSpace)
105
+SAVED=$((AFTER-BEFORE))
106
+printSavedSpace $SAVED "Swift"
107
108
# Remove Android library
109
BEFORE=$(getAvailableSpace)
110
0 commit comments