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

Unified Diff: milo/Makefile

Issue 2755273003: Milo: Split pubsub and the prpc api out to its own modules (Closed)
Patch Set: Add an api module too Created 3 years, 9 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 | milo/appengine/frontend/app.yaml » ('j') | milo/appengine/frontend/module-api.yaml » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/Makefile
diff --git a/milo/Makefile b/milo/Makefile
index b5175044e0f435b49cff845e01cab34a146f0dfe..96cece27258ab129b37a59ef2eff330203d239cc 100644
--- a/milo/Makefile
+++ b/milo/Makefile
@@ -8,8 +8,24 @@ projdir := $(patsubst %/,%,$(dir $(mkfile_path)))
dev:
$(projdir)/../../../../../../luci/appengine/components/tools/gae.py devserver --app-dir $(projdir)/appengine -- --host 0.0.0.0 --port 8082 --admin_port 7999 --log_level debug
-up:
- $(projdir)/../../../../../../luci/appengine/components/tools/gae.py upload -A luci-milo --app-dir $(projdir)/appengine
+# This is intentionally not dependent on the others below to avoid
+# asking for user confirmation multiple times.
+up: up-all up-dispatch
+
+up-all:
+ $(projdir)/../../../../../../luci/appengine/components/tools/gae.py upload -A luci-milo --app-dir $(projdir)/appengine default pubsub api
nodir 2017/03/20 22:22:57 gae.py upload requires valid Go env. infra'git's g
hinoka 2017/03/21 00:56:15 Done.
+
+up-default:
+ $(projdir)/../../../../../../luci/appengine/components/tools/gae.py upload -A luci-milo --app-dir $(projdir)/appengine default
+
+up-pubsub:
+ $(projdir)/../../../../../../luci/appengine/components/tools/gae.py upload -A luci-milo --app-dir $(projdir)/appengine pubsub
+
+up-api:
+ $(projdir)/../../../../../../luci/appengine/components/tools/gae.py upload -A luci-milo --app-dir $(projdir)/appengine api
+
+up-dispatch:
+ appcfg.py -A luci-milo update_dispatch $(projdir)/appengine/frontend
test:
go test ./...
« no previous file with comments | « no previous file | milo/appengine/frontend/app.yaml » ('j') | milo/appengine/frontend/module-api.yaml » ('J')

Powered by Google App Engine
This is Rietveld 408576698