Skip to content
Draft
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/bench-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
env:
RUSTFLAGS: "-C target-cpu=native"
run: |
cargo build --package ${{ matrix.benchmark.id }} --profile release_debug ${{ matrix.benchmark.build_args }} --features unstable_encodings
cargo build --package ${{ matrix.benchmark.id }} --profile release_debug ${{ matrix.benchmark.build_args }}
- name: Setup Polar Signals
if: github.event.pull_request.head.repo.fork == false
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/sql-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -576,10 +576,12 @@ jobs:
RUSTFLAGS: "-C target-cpu=native"
run: |
packages=(--bin data-gen --bin datafusion-bench --bin duckdb-bench)
features=()
if [ "${{ inputs.mode }}" != "pr" ]; then
packages+=(--bin lance-bench)
features+=(--features unstable_encodings)
fi
cargo build "${packages[@]}" --profile release_debug --features unstable_encodings
cargo build "${packages[@]}" "${features[@]}" --profile release_debug
- name: Generate data
shell: bash
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions vortex-btrblocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ insta = { workspace = true }
rstest = { workspace = true }
test-with = { workspace = true }
vortex-array = { workspace = true, features = ["_test-harness"] }
vortex-mask = { workspace = true }
vortex-session = { workspace = true }

[features]
Expand All @@ -64,3 +65,8 @@ test = false
name = "compress_listview"
harness = false
test = false

[[bench]]
name = "stable_tradeoff"
harness = false
test = false
Loading
Loading