Run verify-deploy-gen as part of make verify

This commit is contained in:
James Munnelly 2018-01-24 19:10:49 +00:00
parent c9f1c0e07d
commit 4a63f9a600

View File

@ -42,7 +42,7 @@ GOLDFLAGS := -ldflags "-X $(PACKAGE_NAME)/pkg/util.AppGitState=${GIT_STATE} -X $
# Alias targets
###############
verify: generate_verify hack_verify go_verify
verify: generate_verify deploy_verify hack_verify go_verify
build: $(CMDS) docker_build
docker_build: $(DOCKER_BUILD_TARGETS)
docker_push: $(DOCKER_PUSH_TARGETS)
@ -65,6 +65,10 @@ hack_verify:
@echo Running errexit checker
$(HACK_DIR)/verify-errexit.sh
deploy_verify:
@echo Running deploy-gen
$(HACK_DIR)/verify-deploy-gen.sh
# Go targets
#################
go_verify: go_fmt go_test