Skip to content
Open
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
43 changes: 22 additions & 21 deletions .github/workflows/sql-bench-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,27 +74,28 @@ jobs:
packages+=(--bin lance-bench)
fi
cargo build "${packages[@]}" --profile release_debug --features unstable_encodings
- name: Upload binaries
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: bench-binaries
path: |
target/release_debug/data-gen
target/release_debug/datafusion-bench
target/release_debug/duckdb-bench
target/release_debug/lance-bench
target/release_debug/build/vortex-duckdb-cache/duckdb-lib-*-prebuilt/libduckdb.so
- name: Pre-upload SQL benchmark debuginfo to Polar Signals
if: inputs.mode != 'pr' || github.event.pull_request.head.repo.fork == false
uses: ./.github/actions/upload-parca-debuginfo
continue-on-error: true
with:
paths: |
target/release_debug/datafusion-bench
target/release_debug/duckdb-bench
${{ inputs.mode != 'pr' && 'target/release_debug/lance-bench' || '' }}
polarsignals-cloud-token: ${{ secrets.POLAR_SIGNALS_API_KEY }}
project-id: "e5d846e1-b54c-46e7-9174-8bf055a3af56"
- parallel:
- name: Upload binaries
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: bench-binaries
path: |
target/release_debug/data-gen
target/release_debug/datafusion-bench
target/release_debug/duckdb-bench
target/release_debug/lance-bench
target/release_debug/build/vortex-duckdb-cache/duckdb-lib-*-prebuilt/libduckdb.so
- name: Pre-upload SQL benchmark debuginfo to Polar Signals
if: inputs.mode != 'pr' || github.event.pull_request.head.repo.fork == false
uses: ./.github/actions/upload-parca-debuginfo
continue-on-error: true
with:
paths: |
target/release_debug/datafusion-bench
target/release_debug/duckdb-bench
${{ inputs.mode != 'pr' && 'target/release_debug/lance-bench' || '' }}
polarsignals-cloud-token: ${{ secrets.POLAR_SIGNALS_API_KEY }}
project-id: "e5d846e1-b54c-46e7-9174-8bf055a3af56"

bench:
needs: [resolve-matrix, build]
Expand Down
Loading