You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2023/06/15 20:20:03 UTC

[arrow-datafusion] branch main updated: Disable incremental compilation (#6688)

This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 7354c56e2c Disable incremental compilation (#6688)
7354c56e2c is described below

commit 7354c56e2cbff0ec2e9c94a1bdae9aae6fff2866
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Thu Jun 15 16:19:58 2023 -0400

    Disable incremental compilation (#6688)
---
 .github/actions/setup-builder/action.yaml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.github/actions/setup-builder/action.yaml b/.github/actions/setup-builder/action.yaml
index a46513fc39..5a93f6f27b 100644
--- a/.github/actions/setup-builder/action.yaml
+++ b/.github/actions/setup-builder/action.yaml
@@ -43,6 +43,11 @@ runs:
       # "1" means line tables only, which is useful for panic tracebacks.
       shell: bash
       run: echo "RUSTFLAGS=-C debuginfo=1" >> $GITHUB_ENV
+    - 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
+      shell: bash
+      run: echo "CARGO_INCREMENTAL=0" >> $GITHUB_ENV
     - name: Enable backtraces
       shell: bash
       run: echo "RUST_BACKTRACE=1" >> $GITHUB_ENV