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

Side by Side Diff: appengine/findit/waterfall/start_try_job_on_demand_pipeline.py

Issue 2630433002: Findit] Flake Checker: Pipeline to trigger try jobs to identify flake culprits (Closed)
Patch Set: . Created 3 years, 11 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 import logging 5 import logging
6 6
7 from common.pipeline_wrapper import BasePipeline 7 from common.pipeline_wrapper import BasePipeline
8 from common.waterfall import failure_type 8 from common.waterfall import failure_type
9 from waterfall import try_job_util 9 from waterfall import try_job_util
10 from waterfall.identify_try_job_culprit_pipeline import ( 10 from waterfall.identify_try_job_culprit_pipeline import (
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 task_result = yield ProcessSwarmingTaskResultPipeline( 113 task_result = yield ProcessSwarmingTaskResultPipeline(
114 master_name, builder_name, build_number, step_name) 114 master_name, builder_name, build_number, step_name)
115 reliable_tests.append(task_result) 115 reliable_tests.append(task_result)
116 116
117 try_job_id = yield ScheduleTestTryJobPipeline( 117 try_job_id = yield ScheduleTestTryJobPipeline(
118 master_name, builder_name, build_number, good_revision, bad_revision, 118 master_name, builder_name, build_number, good_revision, bad_revision,
119 try_job_type, suspected_revisions, *reliable_tests) 119 try_job_type, suspected_revisions, *reliable_tests)
120 120
121 try_job_result = yield MonitorTryJobPipeline( 121 try_job_result = yield MonitorTryJobPipeline(
122 try_job_key.urlsafe(), try_job_type, try_job_id) 122 try_job_key.urlsafe(), try_job_type, try_job_id)
123
123 yield IdentifyTryJobCulpritPipeline( 124 yield IdentifyTryJobCulpritPipeline(
124 master_name, builder_name, build_number, blame_list, try_job_type, 125 master_name, builder_name, build_number, blame_list, try_job_type,
125 try_job_id, try_job_result) 126 try_job_id, try_job_result)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698