From ea2680e29fe4edfa14b1322fd3d91d6c9f197553 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Tue, 11 Feb 2025 06:47:57 -0500 Subject: [PATCH] Disable extended tests --- .github/workflows/extended.yml | 46 ++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/.github/workflows/extended.yml b/.github/workflows/extended.yml index e608012ffcf3..19910957a85b 100644 --- a/.github/workflows/extended.yml +++ b/.github/workflows/extended.yml @@ -52,28 +52,30 @@ jobs: cargo check --profile ci --all-targets cargo clean - # Run extended tests (with feature 'extended_tests') - linux-test-extended: - name: cargo test 'extended_tests' (amd64) - needs: linux-build-lib - runs-on: ubuntu-latest - container: - image: amd64/rust - steps: - - uses: actions/checkout@v4 - with: - submodules: true - fetch-depth: 1 - - name: Setup Rust toolchain - uses: ./.github/actions/setup-builder - with: - rust-version: stable - - name: Run tests (excluding doctests) - run: cargo test --profile ci --exclude datafusion-examples --exclude datafusion-benchmarks --workspace --lib --tests --bins --features avro,json,backtrace,extended_tests - - name: Verify Working Directory Clean - run: git diff --exit-code - - name: Cleanup - run: cargo clean +# # Run extended tests (with feature 'extended_tests') +# # Disabling as it is running out of disk space +# # see https://github.com/apache/datafusion/issues/14576 +# linux-test-extended: +# name: cargo test 'extended_tests' (amd64) +# needs: linux-build-lib +# runs-on: ubuntu-latest +# container: +# image: amd64/rust +# steps: +# - uses: actions/checkout@v4 +# with: +# submodules: true +# fetch-depth: 1 +# - name: Setup Rust toolchain +# uses: ./.github/actions/setup-builder +# with: +# rust-version: stable +# - name: Run tests (excluding doctests) +# run: cargo test --profile ci --exclude datafusion-examples --exclude datafusion-benchmarks --workspace --lib --tests --bins --features avro,json,backtrace,extended_tests +# - name: Verify Working Directory Clean +# run: git diff --exit-code +# - name: Cleanup +# run: cargo clean # Check answers are correct when hash values collide hash-collisions: