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

Side by Side Diff: perf/Makefile

Issue 608273002: Add versioning to perf SQL database (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Incorporating feedback 4 Created 6 years, 2 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 | « perf/DESIGN.md ('k') | perf/go/db/db.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .PHONY: build 1 .PHONY: build
2 build: res/css/perf.css res/js/perf.js 2 build: res/css/perf.css res/js/perf.js
3 go install -v ./go/skiaperf 3 go install -v ./go/skiaperf
4 4
5 migratedb:
6 go install -v ./go/migratedb
7
5 .PHONY: ver 8 .PHONY: ver
6 ver: H=$(shell echo `git log -n 1 --format=format:%H`) 9 ver: H=$(shell echo `git log -n 1 --format=format:%H`)
7 ver: 10 ver:
8 S=$(shell echo $H | cut -c1-5); \ 11 S=$(shell echo $H | cut -c1-5); \
9 sed --in-place "s/\(<span id=\"version\">\)\(.*\)\(<\/span>\)/\1<a href= \"https:\/\/skia.googlesource.com\/buildbot\/+\/$H\" target=\"_blank\">Ver:$$S<\ /a>\3/" templates/titlebar.html 12 sed --in-place "s/\(<span id=\"version\">\)\(.*\)\(<\/span>\)/\1<a href= \"https:\/\/skia.googlesource.com\/buildbot\/+\/$H\" target=\"_blank\">Ver:$$S<\ /a>\3/" templates/titlebar.html
10 git update-index --assume-unchanged templates/titlebar.html 13 git update-index --assume-unchanged templates/titlebar.html
11 14
12 .PHONY: release 15 .PHONY: release
13 release: ver build 16 release: ver build
14 echo 17 echo
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 # Rebuild the third_party Javascript we use, but w/o minimizing it. 59 # Rebuild the third_party Javascript we use, but w/o minimizing it.
57 .PHONY: debug-js 60 .PHONY: debug-js
58 debug-js: 61 debug-js:
59 ./node_modules/.bin/grunt --no-color debug-js 62 ./node_modules/.bin/grunt --no-color debug-js
60 63
61 .PHONY: lint 64 .PHONY: lint
62 lint: 65 lint:
63 grunt --no-color jshint:main 66 grunt --no-color jshint:main
64 67
65 .PHONY: all 68 .PHONY: all
66 all: build ingest tool logs 69 all: build ingest tool logs migratedb
67 70
68 tags: 71 tags:
69 etags --recurse res/ go/ 72 etags --recurse res/ go/
OLDNEW
« no previous file with comments | « perf/DESIGN.md ('k') | perf/go/db/db.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698