aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJulien Dessaux2024-09-09 23:15:11 +0200
committerJulien Dessaux2024-09-11 00:20:54 +0200
commit8490464f32983f6302e757769a7018c83e1a33c3 (patch)
tree3ce919045f92faa4272e6ef31c4b40364507fb20 /Makefile
parentFix image building errors when podman is running pods (diff)
downloadev-scripts-8490464f32983f6302e757769a7018c83e1a33c3.tar.gz
ev-scripts-8490464f32983f6302e757769a7018c83e1a33c3.tar.bz2
ev-scripts-8490464f32983f6302e757769a7018c83e1a33c3.zip
Added ods deploy job
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 12 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 765b488..b00e4f6 100644
--- a/Makefile
+++ b/Makefile
@@ -2,14 +2,22 @@ SHELL:=bash
.PHONY: check
check: ## make check # Check syntax of eventline jobs
- evcli deploy-jobs --dry-run */*.yaml
+ 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 \
- grenade-brothers/*.yaml \
- mirror-to-github/*.yaml \
- www/*.yaml
+ certificates/*.yaml \
+ grenade-brothers/*.yaml \
+ mirror-to-github/*.yaml \
+ ods/*.yaml \
+ www/*.yaml
evcli deploy-jobs -p upgrades upgrades/*.yaml
help: