We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d8d028 commit 3a404ceCopy full SHA for 3a404ce
.github/workflows/main.yml
@@ -80,6 +80,13 @@ jobs:
80
81
# Deny warnings on CI to avoid warnings getting into the codebase.
82
- 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
90
- name: Check operability of rustc invocation with argfile
91
env:
92
__CARGO_TEST_FORCE_ARGFILE: 1
@@ -111,7 +118,7 @@ jobs:
111
118
cargo check --manifest-path benches/capture/Cargo.toml
112
119
# The testsuite generates a huge amount of data, and fetch-smoke-test was
113
120
# running out of disk space.
114
- - name: Clear test output
121
+ - name: Clear benchmark output
115
122
run: |
116
123
df -h
117
124
rm -rf target/tmp
0 commit comments