aboutsummaryrefslogtreecommitdiff
path: root/GNUmakefile
blob: b00e4f65657255dee400fbefd448c69c2fef28e9 (plain)
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
SHELL:=bash

.PHONY: check
check: ## make check  # Check syntax of eventline jobs
	evcli deploy-jobs --dry-run eventline/*.yaml \
              certificates/*.yaml \
              grenade-brothers/*.yaml \
              mirror-to-github/*.yaml \
	      ods/*.yaml \
              www/*.yaml
	evcli deploy-jobs --dry-run -p upgrades upgrades/*.yaml

.PHONY: run
run: ## make run    # deploy all jobs
	evcli deploy-jobs eventline/*.yaml \
              certificates/*.yaml \
	      grenade-brothers/*.yaml \
	      mirror-to-github/*.yaml \
	      ods/*.yaml \
	      www/*.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}'

.DEFAULT_GOAL := help