Skip to content

Commit 3a404ce

Browse files
committed
Clean more aggressively in CI
1 parent 7d8d028 commit 3a404ce

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/main.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,13 @@ jobs:
8080

8181
# Deny warnings on CI to avoid warnings getting into the codebase.
8282
- run: cargo test --features 'deny-warnings'
83+
# The testsuite generates a huge amount of data, and fetch-smoke-test was
84+
# running out of disk space.
85+
- name: Clear test output
86+
run: |
87+
df -h
88+
rm -rf target/tmp
89+
df -h
8390
- name: Check operability of rustc invocation with argfile
8491
env:
8592
__CARGO_TEST_FORCE_ARGFILE: 1
@@ -111,7 +118,7 @@ jobs:
111118
cargo check --manifest-path benches/capture/Cargo.toml
112119
# The testsuite generates a huge amount of data, and fetch-smoke-test was
113120
# running out of disk space.
114-
- name: Clear test output
121+
- name: Clear benchmark output
115122
run: |
116123
df -h
117124
rm -rf target/tmp

0 commit comments

Comments
 (0)