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

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: Incorporated feedback 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
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 go install -v ./go/migratedb
jcgregorio 2014/09/30 14:54:08 Can you instead create a migratedb target and then
stephana 2014/09/30 18:11:49 Done.
4 5
5 .PHONY: ver 6 .PHONY: ver
6 ver: H=$(shell echo `git log -n 1 --format=format:%H`) 7 ver: H=$(shell echo `git log -n 1 --format=format:%H`)
7 ver: 8 ver:
8 S=$(shell echo $H | cut -c1-5); \ 9 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 10 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 11 git update-index --assume-unchanged templates/titlebar.html
11 12
12 .PHONY: release 13 .PHONY: release
13 release: ver build 14 release: ver build
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 61
61 .PHONY: lint 62 .PHONY: lint
62 lint: 63 lint:
63 grunt --no-color jshint:main 64 grunt --no-color jshint:main
64 65
65 .PHONY: all 66 .PHONY: all
66 all: build ingest tool logs 67 all: build ingest tool logs
67 68
68 tags: 69 tags:
69 etags --recurse res/ go/ 70 etags --recurse res/ go/
OLDNEW
« no previous file with comments | « perf/DESIGN.md ('k') | perf/go/db/db.go » ('j') | perf/go/db/db.go » ('J')

Powered by Google App Engine
This is Rietveld 408576698