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

Unified Diff: ct/Makefile

Issue 1995023002: Backend for new run_chromium_analysis CT task (Closed) Base URL: https://skia.googlesource.com/buildbot@ct-7-run_lua
Patch Set: Local ChromiumAnalysisRunsDir is not used Created 4 years, 7 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 | ct/go/ctfe/util/util.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ct/Makefile
diff --git a/ct/Makefile b/ct/Makefile
index ad4208cab37f18931c4b0b3c5459a202b29a060f..2b72408be336cae82ddae9c8be2b5d0e9613287b 100644
--- a/ct/Makefile
+++ b/ct/Makefile
@@ -68,6 +68,10 @@ capture_skps_on_workers:
run_chromium_perf_on_workers:
go install -v ./go/master_scripts/run_chromium_perf_on_workers/
+.PHONY: run_chromium_analysis_on_workers
+run_chromium_analysis_on_workers:
+ go install -v ./go/master_scripts/run_chromium_analysis_on_workers/
+
.PHONY: logserver_proxy
logserver_proxy:
go install -v ./go/master_scripts/logserver_proxy/
@@ -97,6 +101,10 @@ capture_skps_from_pdfs:
run_chromium_perf:
go install -v ./go/worker_scripts/run_chromium_perf/
+.PHONY: run_chromium_analysis
+run_chromium_analysis:
+ go install -v ./go/worker_scripts/run_chromium_analysis/
+
.PHONY: poller
poller:
go install -v ./go/poller/
@@ -114,11 +122,13 @@ test:
master_scripts: run_command check_workers_health build_chromium \
create_pagesets_on_workers capture_archives_on_workers \
run_lua_on_workers capture_skps_on_workers \
- run_chromium_perf_on_workers logserver_proxy poller
+ run_chromium_perf_on_workers logserver_proxy poller \
+ run_chromium_analysis_on_workers
.PHONY: worker_scripts
worker_scripts: create_pagesets capture_archives run_lua capture_skps \
- capture_skps_from_pdfs run_chromium_perf
+ capture_skps_from_pdfs run_chromium_perf \
+ run_chromium_analysis
.PHONY: all
all: master_scripts worker_scripts testgo
« no previous file with comments | « no previous file | ct/go/ctfe/util/util.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698