-
Notifications
You must be signed in to change notification settings - Fork 32
49 lines (40 loc) · 1.28 KB
/
bench.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Benchmarks
on:
push:
branches: [develop]
permissions:
actions: read
contents: write
deployments: write
jobs:
bench:
runs-on: ubuntu-latest-large
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/cleanup
- name: Install Protoc
uses: arduino/setup-protoc@v3
- uses: ./.github/actions/setup-rust
- uses: ./.github/actions/setup-python
- 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 \
--project vortex \
--token "${BENCHER_TOKEN}" \
--adapter rust_criterion \
--testbed "github-actions" \
"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 }}