Skip to content

Commit ab0e23e

Browse files
authored
Remove the unused website and clean other dependencies (#8362)
## Summary Remove the new and unused benchmark from the repo. Also took the opportunity to clean up some other dependencies. --------- Signed-off-by: Adam Gutglick <adam@spiraldb.com>
1 parent 0b625c5 commit ab0e23e

94 files changed

Lines changed: 15 additions & 23806 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ jobs:
330330
if: matrix.os == 'windows-x64'
331331
run: |
332332
cargo nextest run --cargo-profile ci --locked --workspace --all-features --no-fail-fast `
333-
--exclude vortex-bench --exclude vortex-bench-server `
333+
--exclude vortex-bench `
334334
--exclude vortex-python --exclude vortex-duckdb `
335335
--exclude vortex-fuzz --exclude vortex-cuda --exclude vortex-cuda-ffi `
336336
--exclude vortex-nvcomp --exclude vortex-cub --exclude vortex-test-e2e-cuda `
@@ -342,19 +342,6 @@ jobs:
342342
if: matrix.os != 'windows-x64'
343343
run: |
344344
cargo nextest run --cargo-profile ci --locked --workspace --all-features --no-fail-fast --exclude vortex-bench --exclude xtask --exclude vortex-sqllogictest
345-
- name: vortex-bench-server admin snapshot tests (Linux only - network-dependent)
346-
# The /api/admin/snapshot tests INSTALL+LOAD the vortex DuckDB
347-
# core extension from extensions.duckdb.org on first call. They
348-
# are #[ignore]'d by default so `cargo test` works in offline
349-
# environments (sandboxed CI, local dev without network). This
350-
# step runs them explicitly on the Linux runners, which DO have
351-
# outbound network, so the entire backup contract is covered
352-
# in CI before merge. macOS/arm64 also exercises them - same
353-
# extension, same network. Windows skipped (bench-server is
354-
# excluded from Windows test matrix above).
355-
if: matrix.os == 'linux-x64' || matrix.os == 'linux-arm64' || matrix.os == 'macos-arm64'
356-
run: |
357-
cargo nextest run --cargo-profile ci --locked -p vortex-bench-server --test admin --run-ignored only
358345
- uses: ./.github/actions/check-rebuild
359346
if: matrix.os != 'windows-x64'
360347
with:

.github/workflows/rust-instrumented.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ jobs:
144144
- name: Run tests with sanitizer
145145
run: |
146146
RUSTFLAGS="${RUSTFLAGS} ${{ matrix.sanitizer_flags }}" \
147-
cargo +$NIGHTLY_TOOLCHAIN nextest run --locked --all-features \
148-
--target x86_64-unknown-linux-gnu --no-fail-fast -Zbuild-std \
147+
cargo +$NIGHTLY_TOOLCHAIN nextest run --locked --all-features --no-fail-fast \
148+
--target x86_64-unknown-linux-gnu -Zbuild-std \
149149
-p vortex-buffer -p vortex-fastlanes -p vortex-fsst -p vortex-alp -p vortex-array
150150
151151
# vortex-ffi requires --no-default-features as otherwise we pull in

0 commit comments

Comments
 (0)