WIP on master: 6962ddd add build and test targets

This commit is contained in:
Andreas Neue 2022-12-20 13:39:22 +01:00
commit af7cee5290
1 changed files with 8 additions and 2 deletions

View File

@ -7,13 +7,19 @@ include make-deploy/cron.mk
include make-deploy/kustomize.mk
include make-deploy/helm.mk
.PHONY: self-update build test deploy pre-deploy post-deploy pre-local post-local upload pull start stop restart reload
.PHONY: self-update prepare build test deploy pre-deploy post-deploy pre-local post-local upload pull start stop restart reload
self-update:
@- git submodule update --remote
deploy: build test upload pre-deploy pre-local pull start post-local post-deploy reload
deploy: prepare build test upload pre-deploy pre-local pull start post-local post-deploy reload
prepare:
@- echo "\n### preparing ..."
@- $(foreach host,$(DEPLOY_HOSTS), \
ssh $(SSH_USER)@$(host) "cd $(DEPLOY_PATH); mkdir $(DEPLOY_NAME)"; \
)
build:
ifneq (,$(wildcard build.sh))
@- echo "\n### running build script"