mirror of
https://github.com/prymitive/karma
synced 2026-02-13 20:59:53 +00:00
16 lines
315 B
Bash
Executable File
16 lines
315 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
git fetch origin main
|
|
git reset --hard FETCH_HEAD
|
|
|
|
make benchmark-go | tee main.txt
|
|
|
|
git reset --hard ${GITHUB_SHA}
|
|
make benchmark-go | tee new.txt
|
|
|
|
make benchmark-compare-go | tee benchstat.txt
|
|
./scripts/pr-comment.py "Go benchmark diff" benchstat.txt noformat
|