Skip to content

Commit

Permalink
ci(actions): disable incremental compilation to save space
Browse files Browse the repository at this point in the history
This should save 2GB of space and prevent rustc from stopping tests
  • Loading branch information
arunanshub committed Feb 20, 2024
1 parent ee07a9e commit ee2da83
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
with:
shared-key: ${{ runner.os }}-cargo

- name: Disable incremental compilation
# Disable incremental compilation to save diskspace (the CI doesn't recompile modified files)
# https://github.com/apache/arrow-datafusion/issues/6676
run: echo "CARGO_INCREMENTAL=0" >> $GITHUB_ENV

- uses: taiki-e/install-action@v2
with:
tool: cargo-hack,cargo-llvm-cov,nextest
Expand Down

0 comments on commit ee2da83

Please sign in to comment.