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

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: set correct metric and target fields 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
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 -A sheriff-o-matic-staging . --version `git rev-parse - -short HEAD`
17
18 deploy-staging-monitoring:
19 » appcfg.py update -A sheriff-o-matic-staging monitoring.yaml --version `g it rev-parse --short HEAD`
17 20
18 deploy-prod: vulcanize 21 deploy-prod: vulcanize
19 appcfg.py --oauth2 update . --version `git rev-parse --short HEAD` 22 appcfg.py --oauth2 update . --version `git rev-parse --short HEAD`
20 23
21 .PHONY: test single-test 24 .PHONY: test single-test
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698