forked from prebid/prebid-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validate.sh
executable file
·45 lines (37 loc) · 1.09 KB
/
validate.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
set -e
AUTOFMT=true
VET=true
while true; do
case "$1" in
--nofmt ) AUTOFMT=false; shift ;;
--novet ) VET=false; shift ;;
* ) break ;;
esac
done
die() { echo -e "$@" 1>&2 ; exit 1; }
# Build a list of all the top-level directories in the project.
for DIRECTORY in */ ; do
GOGLOB="$GOGLOB ${DIRECTORY%/}"
done
# Check that there are no formatting issues
GOFMT_LINES=`gofmt -s -l $GOGLOB | tr '\\\\' '/' | wc -l | xargs`
if $AUTOFMT; then
# if there are files with formatting issues, they will be automatically corrected using the gofmt -w <file> command
if [[ $GOFMT_LINES -ne 0 ]]; then
FMT_FILES=`gofmt -s -l $GOGLOB | tr '\\\\' '/' | xargs`
for FILE in $FMT_FILES; do
echo "Running: gofmt -s -w $FILE"
`gofmt -s -w $FILE`
done
fi
else
test $GOFMT_LINES -eq 0 || die "gofmt needs to be run, ${GOFMT_LINES} files have issues. Below is a list of files to review:\n`gofmt -s -l $GOGLOB`"
fi
# Run the tests.
go test -timeout 120s $(go list ./... | grep -v /vendor/)
if $VET; then
COMMAND="go vet"
echo "Running: $COMMAND"
`$COMMAND`
fi