mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
ea5e9e346c
Add a variable to the makefile and benchmark scripts to let users change the command used to build. Doesn't impact tools like govendor.
37 lines
859 B
Bash
Executable file
37 lines
859 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# allow user to override go executable by running as GOEXE=xxx make ...
|
|
GOEXE="${GOEXE-go}"
|
|
|
|
# Convenience script to
|
|
# - For a given branch
|
|
# - Run benchmark tests for a given package
|
|
# - Do the same for master
|
|
# - then compare the two runs with benchcmp
|
|
|
|
benchFilter=".*"
|
|
|
|
if (( $# < 2 ));
|
|
then
|
|
echo "USAGE: ./bench.sh <git-branch> <package-to-bench> (and <benchmark filter> (regexp, optional))"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
|
|
if [ $# -eq 3 ]; then
|
|
benchFilter=$3
|
|
fi
|
|
|
|
|
|
BRANCH=$1
|
|
PACKAGE=$2
|
|
|
|
git checkout $BRANCH
|
|
"${GOEXE}" test -test.run=NONE -bench="$benchFilter" -test.benchmem=true ./$PACKAGE > /tmp/bench-$PACKAGE-$BRANCH.txt
|
|
|
|
git checkout master
|
|
"${GOEXE}" test -test.run=NONE -bench="$benchFilter" -test.benchmem=true ./$PACKAGE > /tmp/bench-$PACKAGE-master.txt
|
|
|
|
|
|
benchcmp /tmp/bench-$PACKAGE-master.txt /tmp/bench-$PACKAGE-$BRANCH.txt
|