feat: moving CEL engine to GA #2677
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_changes | |
on: | |
issue_comment: | |
types: [created] | |
permissions: | |
contents: read | |
jobs: | |
benchmark: | |
name: "Benchmark" | |
if: github.event.issue.pull_request && github.event.comment.body == '/benchmark' | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 60 | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: izhangzhihao/delete-comment@98aa1ea5c6304048edf951c20b3114e03c785c79 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
delete_user_name: github-actions[bot] | |
issue_number: ${{ github.event.issue.number }} | |
- name: Update status | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v3.5.2 | |
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v3.5.2 | |
- 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/[email protected] | |
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@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
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 }} | |
``` |