Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Duckdb conversion traits and simple arrow impl #2620

Merged
merged 16 commits into from
Mar 10, 2025
14 changes: 14 additions & 0 deletions .github/actions/setup-c++/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Setup C++"
description: "Toolchain setup and Initial compilation"

runs:
using: "composite"
steps:
- name: Setup C++
uses: aminya/setup-cpp@v1
with:
compiler: llvm
sccache: true
cmake: true
ninja: true
vcpkg: true
2 changes: 1 addition & 1 deletion .github/actions/setup-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ runs:
echo "CARGO_INCREMENTAL=0" >> $GITHUB_ENV
- name: Export Path
shell: bash
run: echo "PATH=$PATH" >> $GITHUB_ENV
run: echo "PATH=$PATH" >> $GITHUB_ENV
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ jobs:
- uses: ./.github/actions/setup-rust
with:
targets: ${{matrix.config.target || ''}}
- uses: ./.github/actions/setup-c++
- name: Install cargo-hack
uses: taiki-e/install-action@cargo-hack
- name: Rust Build (${{matrix.config.name}})
Expand All @@ -161,6 +162,7 @@ jobs:
- uses: ./.github/actions/cleanup
- uses: rui314/setup-mold@v1
- uses: ./.github/actions/setup-rust
- uses: ./.github/actions/setup-c++
- uses: taiki-e/install-action@cargo-hack
- uses: taiki-e/install-action@cargo-minimal-versions
- run: cargo minimal-versions check --direct --workspace --ignore-private
Expand All @@ -173,6 +175,7 @@ jobs:
- uses: ./.github/actions/cleanup
- uses: rui314/setup-mold@v1
- uses: ./.github/actions/setup-rust
- uses: ./.github/actions/setup-c++
- name: Rust Lint - Format
run: cargo fmt --all --check
- name: Rustc check
Expand Down Expand Up @@ -207,6 +210,7 @@ jobs:
- uses: ./.github/actions/cleanup
- uses: rui314/setup-mold@v1
- uses: ./.github/actions/setup-rust
- uses: ./.github/actions/setup-c++
- name: Install grcov
if: github.ref == 'refs/heads/develop'
run: cargo install grcov
Expand Down Expand Up @@ -312,7 +316,7 @@ jobs:
with:
tool: nextest
- name: Run all tests with Miri
run: cargo miri nextest run --no-fail-fast --workspace --exclude vortex-file --exclude vortex-layout --exclude vortex-sampling-compressor --exclude vortex-fsst --exclude vortex-array --exclude vortex-dtype --exclude vortex-expr --exclude vortex-scalar
run: cargo miri nextest run --no-fail-fast --workspace --exclude vortex-file --exclude vortex-layout --exclude vortex-sampling-compressor --exclude vortex-fsst --exclude vortex-array --exclude vortex-dtype --exclude vortex-expr --exclude vortex-scalar --exclude vortex-duckdb
# For now, we only run Miri against known "fiddly" crates.
if: false
- name: Run Miri
Expand Down
Loading
Loading