mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
16 lines
319 B
Bash
Executable File
16 lines
319 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
git fetch origin master
|
|
git reset --hard FETCH_HEAD
|
|
|
|
make benchmark-go | tee master.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
|