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
26 changes: 0 additions & 26 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,6 @@ jobs:
run: cargo check --profile ci --no-default-features -p datafusion --features=math_expressions
- name: Check datafusion (parquet)
run: cargo check --profile ci --no-default-features -p datafusion --features=parquet
- name: Check datafusion (pyarrow)
run: cargo check --profile ci --no-default-features -p datafusion --features=pyarrow
- name: Check datafusion (regex_expressions)
run: cargo check --profile ci --no-default-features -p datafusion --features=regex_expressions
- name: Check datafusion (recursive_protection)
Expand Down Expand Up @@ -586,30 +584,6 @@ jobs:
shell: bash
run: cargo test --profile ci --exclude datafusion-cli --workspace --lib --tests --bins --features avro,json,backtrace,integration-tests

test-datafusion-pyarrow:
name: cargo test pyarrow (amd64)
needs: linux-build-lib
runs-on: ubuntu-latest
container:
image: amd64/rust:bullseye # Use the bullseye tag image which comes with python3.9
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
submodules: true
fetch-depth: 1
- name: Install PyArrow
run: |
echo "LIBRARY_PATH=$LD_LIBRARY_PATH" >> $GITHUB_ENV
apt-get update
apt-get install python3-pip -y
python3 -m pip install pyarrow
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: stable
- name: Run datafusion-common tests
run: cargo test --profile ci -p datafusion-common --features=pyarrow,sql

vendor:
name: Verify Vendored Code
runs-on: ubuntu-latest
Expand Down
Loading