-
Notifications
You must be signed in to change notification settings - Fork 780
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Releasing benchmarks and benchmarking PR (#2432)
Co-authored-by: Sertac Ozercan <sozercan@gmail.com> Fixes #692
- Loading branch information
1 parent
359c803
commit 8dc9cc8
Showing
2 changed files
with
77 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: benchmark_changes | ||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
benchmark: | ||
name: "Benchmark" | ||
if: github.event.issue.pull_request && github.event.comment.body == '/benchmark' | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- uses: izhangzhihao/delete-comment@98aa1ea5c6304048edf951c20b3114e03c785c79 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
delete_user_name: github-actions[bot] | ||
issue_number: ${{ github.event.issue.number }} | ||
|
||
- name: install kubebuilder | ||
run: | | ||
curl -L -O "https://github.com/kubernetes-sigs/kubebuilder/releases/download/v${KUBEBUILDER_VERSION}/kubebuilder_${KUBEBUILDER_VERSION}_linux_amd64.tar.gz" &&\ | ||
tar -zxvf kubebuilder_${KUBEBUILDER_VERSION}_linux_amd64.tar.gz &&\ | ||
sudo mv kubebuilder_${KUBEBUILDER_VERSION}_linux_amd64 /usr/local/kubebuilder | ||
env: | ||
KUBEBUILDER_VERSION: 2.3.1 | ||
|
||
- name: Update status | ||
uses: peter-evans/create-or-update-comment@v2 | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
[Running benchmark here...](${{ github.server.url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) | ||
- name: Check out base code into the Go module directory | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.base_ref }} | ||
|
||
- name: Run benchmarks on base ref | ||
run: make benchmark-test BENCHMARK_FILE_NAME="../base_benchmarks.txt" | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
|
||
- name: Run benchmark with incoming changes | ||
run: make benchmark-test BENCHMARK_FILE_NAME="pr_benchmarks.txt" | ||
|
||
- name: Compare benchmarks | ||
id: get-comment-body | ||
run: | | ||
export GOPATH="$HOME/go" | ||
PATH="$GOPATH/bin:$PATH" | ||
go install golang.org/x/perf/cmd/benchstat@v0.0.0-20220920022801-e8d778a60d07 | ||
benchstat ../base_benchmarks.txt pr_benchmarks.txt > benchstat.txt | ||
delimiter=$(openssl rand -hex 8) | ||
echo 'msg<<$delimiter' >> $GITHUB_OUTPUT | ||
cat benchstat.txt >> $GITHUB_OUTPUT | ||
echo '$delimiter' >> $GITHUB_OUTPUT | ||
- name: Create commit comment | ||
uses: peter-evans/create-or-update-comment@v2 | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
This PR compares its performance to the latest released version. If it performs significantly lower, consider optimizing your changes to improve the performance. | ||
``` | ||
${{ steps.get-comment-body.outputs.msg }} | ||
``` |
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