Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Check dependencies
run: |
cd dev/depcheck
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82

- name: Cache Cargo
uses: actions/cache@v4
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Run tests (excluding doctests)
run: cargo test --lib --tests --bins --features avro,json,backtrace
- name: Verify Working Directory Clean
Expand All @@ -163,7 +163,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Run tests (excluding doctests)
run: |
cd datafusion-cli
Expand All @@ -184,7 +184,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Run examples
run: |
# test datafusion-sql examples
Expand All @@ -210,7 +210,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Run doctests
run: |
cargo test --doc --features avro,json
Expand All @@ -231,7 +231,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Run cargo doc
run: ci/scripts/rust_docs.sh

Expand All @@ -245,7 +245,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Build with wasm-pack
Expand All @@ -266,7 +266,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Generate benchmark data and expected query results
run: |
mkdir -p datafusion/sqllogictest/test_files/tpch/data
Expand Down Expand Up @@ -384,7 +384,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Run datafusion-common tests
run: cargo test -p datafusion-common --features=pyarrow

Expand Down Expand Up @@ -413,7 +413,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Run
run: |
echo '' > datafusion/proto/src/generated/datafusion.rs
Expand Down Expand Up @@ -474,7 +474,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Install Clippy
run: rustup component add clippy
- name: Run clippy
Expand All @@ -494,7 +494,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Run tests
run: |
cd datafusion
Expand All @@ -513,7 +513,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- name: Install taplo
run: cargo +stable install taplo-cli --version ^0.9 --locked
# if you encounter an error, try running 'taplo format' to fix the formatting automatically.
Expand All @@ -533,7 +533,7 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
rust-version: 1.82
- uses: actions/setup-node@v4
with:
node-version: "20"
Expand Down
Loading