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 3db4a80 commit 5703331Copy full SHA for 5703331
.github/workflows/ci.yml
@@ -81,7 +81,24 @@ jobs:
81
julia-version: "1.12"
82
83
steps:
84
- - run: sudo rm -rf /opt/*
+ - name: Show available storage before cleanup
85
+ run: |
86
+ df -h /
87
+ df -a /
88
+ - name: Free Disk Space
89
+ uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
90
+ with:
91
+ tool-cache: true
92
+ # This option takes some time, but could be switched to true if more
93
+ # space is needed (~5 GB or so)
94
+ large-packages: false
95
+ - name: Cleanup /opt
96
97
+ sudo rm -rf /opt/*
98
+ - name: Show available storage after cleanup
99
100
101
102
- uses: actions/checkout@v6
103
- uses: julia-actions/setup-julia@v2
104
with:
0 commit comments