Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4ed7833

Browse files
committedDec 18, 2024·
add tpch benchmark workflow
1 parent b4b1aea commit 4ed7833

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed
 

‎.github/workflows/tpch.yaml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Rust TPC-H Benchmarks
2+
3+
# Do not run this workflow on pull request since this workflow has permission to modify contents.
4+
on:
5+
push:
6+
branches:
7+
- main
8+
# Hack for testing (REMOVE)
9+
- continuous-bench-attempt
10+
11+
permissions:
12+
# deployments permission to deploy GitHub pages website
13+
deployments: write
14+
# contents permission to update benchmark contents in gh-pages branch
15+
contents: write
16+
17+
jobs:
18+
benchmark:
19+
name: Run Rust benchmark example
20+
runs-on: ubuntu-latest
21+
steps:
22+
# Setup Rust.
23+
- uses: actions/checkout@v4
24+
- run: rustup toolchain install stable --profile minimal --no-self-update
25+
26+
# Make sure to use cached compilation objects if they exist.
27+
- uses: Swatinem/rust-cache@v2
28+
29+
# Run the benchmark and store to `output.txt`.
30+
- name: Run benchmark
31+
run: cargo bench --bench planner_bench tpch/q6/ -- --output-format bencher | tee output.txt
32+
33+
# Run the `github-action-benchmark` action.
34+
- name: Store benchmark result
35+
uses: benchmark-action/github-action-benchmark@v1
36+
with:
37+
name: Rust Benchmark
38+
tool: "cargo"
39+
output-file-path: output.txt
40+
gh-pages-branch: gh-pages
41+
github-token: ${{ secrets.GITHUB_TOKEN }}
42+
auto-push: true
43+
# Show alert with commit comment on detecting possible performance regression
44+
alert-threshold: "125%"
45+
summary-always: true
46+
comment-on-alert: true
47+
fail-on-alert: true
48+
alert-comment-cc-users: "@connortsui20"

0 commit comments

Comments
 (0)
This repository has been archived.