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

Side by Side Diff: appengine/sheriff_o_matic/makefile

Issue 1260293009: make version of ts_mon compatible with appengine (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: add noncululativedistribution metric to ts_mon imports Created 5 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 unified diff | Download patch
« no previous file with comments | « appengine/sheriff_o_matic/dispatch.yaml ('k') | appengine/sheriff_o_matic/ts_alerts.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 test: 5 test:
6 ./node_modules/karma/bin/karma start 6 ./node_modules/karma/bin/karma start
7 7
8 single-test: 8 single-test:
9 ./node_modules/karma/bin/karma start --single-run 9 ./node_modules/karma/bin/karma start --single-run
10 10
11 vulcanize: 11 vulcanize:
12 mkdir -p ./gen 12 mkdir -p ./gen
13 ./node_modules/vulcanize/bin/vulcanize sheriff-o-matic.html -o gen/index .html 13 ./node_modules/vulcanize/bin/vulcanize sheriff-o-matic.html -o gen/index .html
14 14
15 deploy-staging: vulcanize 15 deploy-staging: vulcanize
16 » appcfg.py --oauth2 update -A sheriff-o-matic-staging . --version `git re v-parse --short HEAD` 16 » appcfg.py update_dispatch -A sheriff-o-matic-staging .
17 » appcfg.py update -A sheriff-o-matic-staging . --version `git rev-parse - -short HEAD`
18
19 deploy-staging-monitoring:
20 » appcfg.py update -A sheriff-o-matic-staging appengine_module/gae_ts_mon/ monitoring.yaml --version `git rev-parse --short HEAD`
17 21
18 deploy-prod: vulcanize 22 deploy-prod: vulcanize
19 » appcfg.py --oauth2 update . --version `git rev-parse --short HEAD` 23 » appcfg.py update . --version `git rev-parse --short HEAD`
24 » appcfg.py update_dispatch -A sheriff-o-matic .
25 » appcfg.py update -A sheriff-o-matic appengine_module/gae_ts_mon/monitori ng.yaml --version `git rev-parse --short HEAD`
20 26
21 .PHONY: test single-test 27 .PHONY: test single-test
28
OLDNEW
« no previous file with comments | « appengine/sheriff_o_matic/dispatch.yaml ('k') | appengine/sheriff_o_matic/ts_alerts.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698