Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: logdog/appengine/cmd/coordinator/Makefile

Issue 2988393002: [logdog] Fix tumble queue backend. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | logdog/appengine/cmd/coordinator/vmuser/queue.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: logdog/appengine/cmd/coordinator/Makefile
diff --git a/logdog/appengine/cmd/coordinator/Makefile b/logdog/appengine/cmd/coordinator/Makefile
index a7240df5f19f576b6b0d15e2fb7315a7967b4b1a..2a2d7dc91922b9b89fa33cffdf27f02c43e88512 100644
--- a/logdog/appengine/cmd/coordinator/Makefile
+++ b/logdog/appengine/cmd/coordinator/Makefile
@@ -71,8 +71,11 @@ endef
help:
$(info $(HELP_BODY))
+YAMLS = dispatch queue cron index
+YAML_PATHS = $(addprefix vmuser/,$(addsuffix .yaml,$(YAMLS)))
+
.PHONY: yamls
-yamls: vmuser/app.yaml vmuser/dispatch.yaml vmuser/index.yaml
+yamls: vmuser/app.yaml $(YAML_PATHS)
.PHONY: web
web:
@@ -136,3 +139,10 @@ upload-static-dev: static-resources yamls
--quiet \
--no-promote \
static/module-static.yaml
+
+$(addprefix update-,$(YAMLS)): update-%:
+ cd $(APP_DIR) && \
+ gcloud app deploy \
+ --project $(CLOUD_PROJECT) \
+ --quiet \
+ vmuser/$*.yaml
« no previous file with comments | « no previous file | logdog/appengine/cmd/coordinator/vmuser/queue.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698