summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2024-11-19 04:32:36 +0100
committerGitHub <noreply@github.com>2024-11-19 04:32:36 +0100
commitf86f4d62243d301b84c0992088be0effa153f22e (patch)
treecce1db87b2b1eee818448498efec10654ebddc75
parent3159f91b90a5bc68b275f8688472ba8917a834da (diff)
downloadcandle-f86f4d62243d301b84c0992088be0effa153f22e.tar.gz
candle-f86f4d62243d301b84c0992088be0effa153f22e.tar.bz2
candle-f86f4d62243d301b84c0992088be0effa153f22e.zip
Tweak the CI to avoid running out of disk space. (#2630)
* Tweak the CI to avoid running out of disk space. * Linux only.
-rw-r--r--.github/workflows/rust-ci.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml
index db255030..33d859dc 100644
--- a/.github/workflows/rust-ci.yml
+++ b/.github/workflows/rust-ci.yml
@@ -37,6 +37,9 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable]
steps:
+ - name: Delete huge unnecessary tools folder
+ if: runner.os == 'Linux'
+ run: rm -rf /opt/hostedtoolcache
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with: