#!/usr/bin/env bash echo "Run checkstyle script" # run gofmt echo "Run 'gofmt'" unformatted=$(gofmt -l `pwd`/agent/) if [[ -n $unformatted ]]; then echo >&2 "Error: Found files not formatted by gofmt" for fi in $unformatted; do echo >&2 $fi done echo "Please run 'gofmt -w' for files listed." exit 1 fi unformatted=$(gofmt -l `pwd`/core/) if [[ -n $unformatted ]]; then echo >&2 "Error: Found files not formatted by gofmt" for fi in $unformatted; do echo >&2 $fi done echo "Please run 'gofmt -w' for files listed." exit 1 fi unformatted=$(gofmt -l `pwd`/common/) if [[ -n $unformatted ]]; then echo >&2 "Error: Found files not formatted by gofmt" for fi in $unformatted; do echo >&2 $fi done echo "Please run 'gofmt -w' for files listed." exit 1 fi echo "Run 'goimports'" unformatted=$(Tools/bin/goimports -l `pwd`/agent/) if [[ -n $unformatted ]]; then echo >&2 "Error: Found files not formatted by goimports" for f in $unformatted; do echo >&2 $f done echo "Please run 'goimports -w' for files listed." exit 1 fi unformatted=$(Tools/bin/goimports -l `pwd`/core/) if [[ -n $unformatted ]]; then echo >&2 "Error: Found files not formatted by goimports" for f in $unformatted; do echo >&2 $f done echo "Please run 'goimports -w' for files listed." exit 1 fi unformatted=$(Tools/bin/goimports -l `pwd`/common/) if [[ -n $unformatted ]]; then echo >&2 "Error: Found files not formatted by goimports" for f in $unformatted; do echo >&2 $f done echo "Please run 'goimports -w' for files listed." exit 1 fi # run govet echo "Run 'go vet'" go vet -composites=false ./agent/... go vet -composites=false ./core/... go vet -composites=false ./common/...