Skip to content

Commit

Permalink
Adding cargo clean at the end of every step #14576 (#14592)
Browse files Browse the repository at this point in the history
  • Loading branch information
Omega359 authored Feb 10, 2025
1 parent 3f900ac commit ac0a8d0
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/extended.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ jobs:
with:
rust-version: stable
- name: Prepare cargo build
run: cargo check --profile ci --all-targets
run: |
cargo check --profile ci --all-targets
cargo clean
# Run extended tests (with feature 'extended_tests')
linux-test-extended:
Expand All @@ -70,6 +72,8 @@ jobs:
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:
Expand All @@ -90,6 +94,7 @@ jobs:
run: |
cd datafusion
cargo test --profile ci --exclude datafusion-examples --exclude datafusion-benchmarks --exclude datafusion-sqllogictest --workspace --lib --tests --features=force_hash_collisions,avro,extended_tests
cargo clean
sqllogictest-sqlite:
name: "Run sqllogictests with the sqlite test suite"
Expand All @@ -106,4 +111,8 @@ jobs:
with:
rust-version: stable
- name: Run sqllogictest
run: cargo test --profile release-nonlto --test sqllogictests -- --include-sqlite
run: |
cargo test --profile release-nonlto --test sqllogictests -- --include-sqlite
cargo clean

0 comments on commit ac0a8d0

Please sign in to comment.