Skip to content

Commit cb31e1c

Browse files
authored
Don't cache the coverage report itself (#6044)
The size of the coverage data is between 200MB to **1GB**, this PR makes sure we don't cache it as the cache actions caches everything in `/target` Signed-off-by: Adam Gutglick <[email protected]>
1 parent 45326d7 commit cb31e1c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,7 @@ jobs:
431431
run: |
432432
cargo run --bin datafusion-bench -- tpch -i2 --formats "vortex,vortex-compact" --opt scale-factor=0.1
433433
cargo run --bin duckdb-bench -- tpch -i2 --formats "vortex,vortex-compact" --opt scale-factor=0.1
434+
rm -rf vortex-bench/data/
434435
- name: Run FFI Example
435436
if: ${{ matrix.suite == 'ffi' }}
436437
run: |
@@ -457,6 +458,11 @@ jobs:
457458
disable_search: true
458459
flags: ${{ matrix.suite }}
459460
use_oidc: true
461+
- name: Cleanup coverage file
462+
shell: bash
463+
run: |
464+
du -sh target/coverage/
465+
rm -rf target/coverage/
460466
- name: Prune cache
461467
if: ${{ github.ref_name == 'develop' && steps.setup-rust.outputs.deps-cache-hit != 'true' }}
462468
run: cargo sweep --file

0 commit comments

Comments
 (0)