Easy godep/go vet setup.

This commit is contained in:
Jakob Borg 2014-05-12 20:00:57 -03:00
parent abbb40abd2
commit a105ad1391
1 changed files with 24 additions and 9 deletions

View File

@ -10,25 +10,28 @@ host=$(hostname)
host=${host%%.*}
ldflags="-w -X main.Version $version -X main.BuildStamp $date -X main.BuildUser $user -X main.BuildHost $host"
check() {
if ! command -v godep >/dev/null ; then
echo "Error: no godep. Try \"$0 setup\"."
exit 1
fi
}
build() {
check
go vet ./... || exit 1
if command -v godep >/dev/null ; then
godep=godep
else
echo "Warning: no godep, using \"go get\" instead."
echo "Try \"go get github.com/tools/godep\"."
go get -d ./cmd/syncthing
godep=
fi
${godep} go build $* -ldflags "$ldflags" ./cmd/syncthing
godep go build $* -ldflags "$ldflags" ./cmd/syncthing
}
assets() {
check
godep go run cmd/assets/assets.go gui > auto/gui.files.go
}
test() {
check
godep go test -cpu=1,2,4 ./...
}
@ -63,9 +66,17 @@ zipDist() {
}
deps() {
check
godep save ./cmd/syncthing ./cmd/assets ./discover/cmd/discosrv
}
setup() {
echo Installing godep...
go get -u github.com/tools/godep
echo Installing go vet...
go get -u code.google.com/p/go.tools/cmd/vet
}
case "$1" in
"")
shift
@ -149,6 +160,10 @@ case "$1" in
assets
;;
setup)
setup
;;
*)
echo "Unknown build parameter $1"
;;