updating ci target with bazel call

This commit is contained in:
chrislovecnm 2018-02-23 17:35:57 -07:00
parent 798d40b4a2
commit 8bbbaf1897
1 changed files with 5 additions and 1 deletions

View File

@ -522,12 +522,16 @@ verify-gendocs: ${KOPS}
exit 1; \
fi
@echo "cli docs up-to-date"
.PHONY: verify-bazel
verify-bazel:
hack/verify-bazel.sh
#
# verify-gendocs will call kops target
# verify-package has to be after verify-gendoc, because with .gitignore for federation bindata
# it bombs in travis. verify-gendoc generates the bindata file.
.PHONY: ci
ci: govet verify-gofmt verify-boilerplate nodeup examples test | verify-gendocs verify-packages
ci: govet verify-gofmt verify-boilerplate verify-bazel nodeup examples test | verify-gendocs verify-packages
echo "Done!"
# --------------------------------------------------