We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d33a704 commit bef13e2Copy full SHA for bef13e2
1 file changed
.github/workflows/postgresql.yml
@@ -32,8 +32,15 @@ jobs:
32
runs-on: ubuntu-latest
33
34
steps:
35
- - name: Delete huge unnecessary tools folder
36
- run: rm -rf /opt/hostedtoolcache
+ - name: Free up disk space by removing tools
+ run: |
37
+ sudo rm -rf /usr/share/dotnet
38
+ sudo rm -rf /opt/ghc
39
+ sudo rm -rf "/usr/local/share/boost"
40
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
41
+ echo "Disk space after cleanup:"
42
+ df -h
43
+
44
- name: Set tags
45
run: |
46
if [ -z "$TAG" ]; then
0 commit comments