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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,8 @@ jobs:
if: matrix.os == 'windows-x64'
run: |
cargo nextest run --cargo-profile ci --locked --workspace --all-features --no-fail-fast `
--exclude vortex-bench --exclude vortex-python --exclude vortex-duckdb `
--exclude vortex-bench --exclude vortex-bench-server `
--exclude vortex-python --exclude vortex-duckdb `
--exclude vortex-fuzz --exclude vortex-cuda --exclude vortex-nvcomp `
--exclude vortex-cub --exclude vortex-test-e2e-cuda --exclude duckdb-bench `
--exclude lance-bench --exclude datafusion-bench --exclude random-access-bench `
Expand Down
46 changes: 46 additions & 0 deletions .github/workflows/publish-bench-server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Publish Bench Server

on:
push:
branches: [develop]
paths:
- "benchmarks-website/server/**"
- "vortex-bench/**"
- "Cargo.lock"
- ".github/workflows/publish-bench-server.yml"
workflow_dispatch: { }

jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
packages: write
id-token: write
steps:
- uses: actions/checkout@v6

- name: Log in to GHCR
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4

- name: Build and push
uses: docker/build-push-action@v7
with:
context: .
file: ./benchmarks-website/server/Dockerfile
platforms: linux/arm64
push: true
tags: |
ghcr.io/${{ github.repository }}/vortex-bench-server:latest
ghcr.io/${{ github.repository }}/vortex-bench-server:${{ github.sha }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -242,3 +242,6 @@ trace*.pb

# pytest-benchmark output
vortex-python/.benchmarks/
# For local benchmarks website server and things like the WAL
**.duckdb*
.bench-env
Loading
Loading