-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
91 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: Report qe benchmarks | ||
on: | ||
pull_request: | ||
paths-ignore: | ||
- ".github/**" | ||
- "!.github/workflows/wasm-perf.yml" | ||
- ".buildkite/**" | ||
- "*.md" | ||
- "LICENSE" | ||
- "CODEOWNERS" | ||
- "renovate.json" | ||
|
||
jobs: | ||
run-benchmarks: | ||
name: Run benchmarks | ||
runs-on: ubuntu-latest | ||
outputs: | ||
results: ${{ steps.bench.outputs.results }} | ||
steps: | ||
- name: Checkout PR branch | ||
uses: actions/checkout@v4 | ||
|
||
- name: "Setup Node.js" | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node_version }} | ||
|
||
- name: "Setup pnpm" | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
|
||
- name: "Get pnpm store directory" | ||
shell: bash | ||
run: | | ||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | ||
- name: "Login to Docker Hub" | ||
uses: docker/login-action@v3 | ||
continue-on-error: true | ||
env: | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | ||
if: "${{ env.DOCKERHUB_USERNAME != '' && env.DOCKERHUB_TOKEN != '' }}" | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- uses: dtolnay/rust-toolchain@stable | ||
|
||
- name: Install wasm-pack | ||
run: cargo install wasm-pack | ||
|
||
- name: Setup benchmark | ||
run: make setup-pg-bench | ||
|
||
- name: Run benchmarks | ||
id: bench | ||
run: | | ||
echo "results=$(make run-bench)\n" >> $GITHUB_OUTPUT | ||
report: | ||
name: Report benchmarks | ||
runs-on: ubuntu-latest | ||
needs: | ||
- run-benchmarks | ||
|
||
steps: | ||
- name: Find past report comment | ||
uses: peter-evans/find-comment@v2 | ||
id: findReportComment | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body-includes: "<!-- qe-benchmarks -->" | ||
|
||
- name: Create or update report | ||
uses: peter-evans/create-or-update-comment@v3 | ||
with: | ||
comment-id: ${{ steps.findReportComment.outputs.comment-id }} | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: | | ||
<!-- qe-benchmarks --> | ||
### Query engine benchmark results | ||
```sh | ||
${{ needs.run-benchmarks.outputs.results}} | ||
``` | ||
edit-mode: replace |
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