Hackathon 2024-08 pyrobench #8
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
name: Benchmark | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Bench | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.22 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1024 | |
# Commenting out this step for now while we test the PR comment portion | |
# # TODO: Pin release | |
# # TODO: Remove git-base | |
# # TODO: Provide output | |
# - name: Run Benchmark | |
# run: go run github.com/grafana/pyrobench@65a9bc2 -v compare --git-base 5eca05b1e4cf63df5d007ec6b13ce7394a0fffe3 | |
- uses: actions/github-script@v7 | |
id: create-comment | |
with: | |
# TODO(bryan): Only run on pull_request, not push | |
script: | | |
github.rest.issues.listComments({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
}); | |
- name: Get result | |
run: echo "${{steps.create-comment.outputs.result}}" |