-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
install DuckDB when running benchmarks (#541)
Fix failures on benchmark action on develop
- Loading branch information
Showing
5 changed files
with
248 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ permissions: | |
jobs: | ||
bench: | ||
runs-on: ubuntu-latest-large | ||
if: ${{ github.ref_name == 'develop' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
|
@@ -28,6 +27,12 @@ jobs: | |
- name: Setup bencher.dev CLI | ||
uses: bencherdev/bencher@main | ||
|
||
# The compression benchmarks rely on DuckDB being installed to convert CSV to Parquet | ||
- name: Install DuckDB | ||
uses: opt-nc/[email protected] | ||
with: | ||
version: v1.0.0 | ||
|
||
- name: Upload Vortex Benchmarks | ||
run: | | ||
bencher run \ | ||
|
@@ -38,4 +43,10 @@ jobs: | |
"cargo bench -p bench-vortex" | ||
env: | ||
BENCHER_TOKEN: ${{ secrets.BENCHER_TOKEN }} | ||
# AWS Credentials for R2 storage tests | ||
AWS_BUCKET: vortex-test | ||
AWS_ENDPOINT: ${{ secrets.AWS_ENDPOINT }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.