Skip to content

Instantly share code, notes, and snippets.

@nnathan
Last active October 26, 2019 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nnathan/a409f61cd690ecc7c0862b88a43cc0e2 to your computer and use it in GitHub Desktop.
Save nnathan/a409f61cd690ecc7c0862b88a43cc0e2 to your computer and use it in GitHub Desktop.
Go repository build script.
#!/usr/bin/env bash
set -e
if [ -t 1 ]
then
CYAN='\033[0;36m'
YELLOW='\033[0;33m'
GREEN='\033[0;32m'
RED='\033[0;31m'
NC='\033[0m'
fi
cyan() { printf "${CYAN}%s${NC}" "$*"; }
yellow() { printf "${YELLOW}%s${NC}" "$*"; }
green() { printf "${GREEN}%s${NC}" "$*"; }
red() { printf "${RED}%s${NC}" "$*"; }
good() {
echo "$(green "● success:")" "$@"
}
bad() {
ret=$1
shift
echo "$(red "● failed:")" "$@"
exit $ret
}
try() {
"$@" || bad $? "$@" && good "$@"
}
cmd_exists() {
type "$1" >/dev/null 2>&1
}
cmd_exists go || bad 1 "uhhh, where's your go install? what are you even doing here!"
cmd_exists gofmt || bad 1 "so you have go installed, but not gofmt? wtf mate^^"
cmd_exists dep || bad 1 "cannot find dep; check PATH or go to https://github.com/golang/dep"
cmd_exists golangci-lint || bad 1 "cannot find golangci-lint; check PATH or go to https://github.com/golangci/golangci-lint"
try go build ./...
try go test ./...
{
{
opt='shopt -s extglob nullglob'
gofmt='gofmt -s -w -l !(vendor)/ *.go'
notice="$(cyan "● running:") ( $opt; $gofmt; )"
prefix=" $(yellow modified:)"
trap 'echo "$notice"; $opt; $gofmt | sed -e "s#^#$prefix #g"' EXIT
}
# comma separate linters (e.g. "gofmt,stylecheck")
additional_linters="gofmt"
try golangci-lint run --enable $additional_linters ./...
trap '' EXIT
}
try dep check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment