forked from dell/dell-csi-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check.sh
50 lines (41 loc) · 1.49 KB
/
check.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
46
47
48
49
#!/bin/bash
if [ -f "../vendor" ]; then
# Tell the applicable Go tools to use the vendor directory, if it exists.
MOD_FLAGS="-mod=vendor"
fi
FMT_TMPFILE=/tmp/check_fmt
FMT_COUNT_TMPFILE=${FMT_TMPFILE}.count
fmt_count() {
if [ ! -f $FMT_COUNT_TMPFILE ]; then
echo "0"
fi
head -1 $FMT_COUNT_TMPFILE
}
fmt() {
gofmt -d ./pkg/config ./pkg/constants ./pkg/ctrlconfig ./pkg/resources ./pkg/utils | tee $FMT_TMPFILE
cat $FMT_TMPFILE | wc -l > $FMT_COUNT_TMPFILE
if [ ! `cat $FMT_COUNT_TMPFILE` -eq "0" ]; then
echo Found `cat $FMT_COUNT_TMPFILE` formatting issue\(s\).
return 1
fi
}
echo === Checking format...
fmt
FMT_RETURN_CODE=$?
echo === Finished
echo === Vetting dell-csi-operator
CGO_ENABLED=0 go vet ${MOD_FLAGS} ./pkg/config/... ./pkg/constants/... ./pkg/ctrlconfig/... ./pkg/resources/... ./pkg/utils/...
VET_RETURN_CODE=$?
echo === Finished
echo === Linting...
(command -v golint >/dev/null 2>&1 \
|| GO111MODULE=on go install golang.org/x/lint/golint@latest) \
&& golint --set_exit_status ./pkg/config/... ./pkg/constants/... ./pkg/resources/... ./pkg/ctrlconfig/... ./pkg/utils/...
LINT_RETURN_CODE=$?
echo === Finished
# Report output.
fail_checks=0
[ "${FMT_RETURN_CODE}" != "0" ] && echo "Formatting checks failed! => Run 'make format'." && fail_checks=1
[ "${VET_RETURN_CODE}" != "0" ] && echo "Vetting checks failed!" && fail_checks=1
[ "${LINT_RETURN_CODE}" != "0" ] && echo "Linting checks failed!" && fail_checks=1
exit ${fail_checks}