aboutsummaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--GNUmakefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile
index b00e4f6..6b0a0d9 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -2,23 +2,25 @@ SHELL:=bash
.PHONY: check
check: ## make check # Check syntax of eventline jobs
- evcli deploy-jobs --dry-run eventline/*.yaml \
+ evcli deploy-jobs --dry-run \
certificates/*.yaml \
grenade-brothers/*.yaml \
mirror-to-github/*.yaml \
ods/*.yaml \
www/*.yaml
- evcli deploy-jobs --dry-run -p upgrades upgrades/*.yaml
+ evcli deploy-jobs --dry-run -p upgrades \
+ upgrades/*.yaml
.PHONY: run
run: ## make run # deploy all jobs
- evcli deploy-jobs eventline/*.yaml \
+ evcli deploy-jobs \
certificates/*.yaml \
grenade-brothers/*.yaml \
mirror-to-github/*.yaml \
ods/*.yaml \
www/*.yaml
- evcli deploy-jobs -p upgrades upgrades/*.yaml
+ evcli deploy-jobs -p upgrades \
+ upgrades/*.yaml
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'