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

Issue 2026283002: [Findit] Adding logic to force try jobs regardless of bailout or previous results (Closed)

Created:
4 years, 6 months ago by lijeffrey
Modified:
4 years, 5 months ago
Reviewers:
chanli, stgao
CC:
chromium-reviews, infra-reviews+infra_chromium.org, Sharu Jiang
Base URL:
https://chromium.googlesource.com/infra/infra.git@master
Target Ref:
refs/heads/master
Project:
infra
Visibility:
Public.

Description

[Findit] Adding logic to force try jobs regardless of bailout BUG=616526 Committed: https://chromium.googlesource.com/infra/infra/+/8c8e25309120e4e69ac183fe4a1a6c3d35a0546d

Patch Set 1 #

Total comments: 9

Patch Set 2 : Addressing comments #

Total comments: 6

Patch Set 3 : Addressing comments and rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+347 lines, -135 lines) Patch
M appengine/findit/handlers/build_failure.py View 1 2 8 chunks +21 lines, -17 lines 0 comments Download
M appengine/findit/handlers/handlers_util.py View 1 2 11 chunks +42 lines, -16 lines 0 comments Download
M appengine/findit/handlers/test/build_failure_test.py View 1 11 chunks +17 lines, -16 lines 0 comments Download
M appengine/findit/handlers/test/handlers_util_test.py View 1 2 3 chunks +31 lines, -2 lines 0 comments Download
M appengine/findit/templates/build_failure.html View 1 2 5 chunks +98 lines, -25 lines 0 comments Download
M appengine/findit/waterfall/analyze_build_failure_pipeline.py View 3 chunks +8 lines, -4 lines 0 comments Download
M appengine/findit/waterfall/build_failure_analysis_pipelines.py View 1 4 chunks +7 lines, -2 lines 0 comments Download
M appengine/findit/waterfall/monitor_try_job_pipeline.py View 1 2 1 chunk +1 line, -1 line 0 comments Download
M appengine/findit/waterfall/run_try_job_for_reliable_failure_pipeline.py View 1 4 chunks +13 lines, -6 lines 0 comments Download
M appengine/findit/waterfall/start_try_job_on_demand_pipeline.py View 1 2 chunks +4 lines, -3 lines 0 comments Download
M appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py View 1 2 2 chunks +4 lines, -3 lines 0 comments Download
M appengine/findit/waterfall/test/analyze_build_failure_pipeline_test.py View 5 chunks +5 lines, -0 lines 0 comments Download
M appengine/findit/waterfall/test/build_failure_analysis_pipelines_test.py View 1 2 chunks +4 lines, -2 lines 0 comments Download
M appengine/findit/waterfall/test/run_try_job_for_reliable_failure_pipeline_test.py View 5 chunks +17 lines, -6 lines 0 comments Download
M appengine/findit/waterfall/test/start_try_job_on_demand_pipeline_test.py View 3 chunks +2 lines, -3 lines 0 comments Download
M appengine/findit/waterfall/test/try_job_util_test.py View 1 6 chunks +51 lines, -9 lines 0 comments Download
M appengine/findit/waterfall/try_job_util.py View 1 4 chunks +22 lines, -20 lines 0 comments Download

Messages

Total messages: 15 (5 generated)
lijeffrey
ptal
4 years, 6 months ago (2016-06-01 17:34:47 UTC) #3
chanli
https://codereview.chromium.org/2026283002/diff/1/appengine/findit/waterfall/test/try_job_util_test.py File appengine/findit/waterfall/test/try_job_util_test.py (right): https://codereview.chromium.org/2026283002/diff/1/appengine/findit/waterfall/test/try_job_util_test.py#newcode144 appengine/findit/waterfall/test/try_job_util_test.py:144: def testBailOutForTryJobWithOutdatedTimestampForce(self): Naming nit: because of 'force' the try ...
4 years, 6 months ago (2016-06-01 21:01:59 UTC) #4
stgao
I only reviewed the change on the pipeline part, and didn't find anything obvious. I ...
4 years, 6 months ago (2016-06-02 01:25:13 UTC) #5
lijeffrey
https://codereview.chromium.org/2026283002/diff/1/appengine/findit/handlers/build_failure.py File appengine/findit/handlers/build_failure.py (right): https://codereview.chromium.org/2026283002/diff/1/appengine/findit/handlers/build_failure.py#newcode394 appengine/findit/handlers/build_failure.py:394: self.request.get('force_try_job_rerun') == '1') On 2016/06/02 01:25:13, stgao wrote: > ...
4 years, 6 months ago (2016-06-02 05:36:06 UTC) #6
stgao
lgtm for the change on pipelines.
4 years, 6 months ago (2016-06-02 21:30:05 UTC) #7
chanli
https://codereview.chromium.org/2026283002/diff/1/appengine/findit/waterfall/try_job_util.py File appengine/findit/waterfall/try_job_util.py (right): https://codereview.chromium.org/2026283002/diff/1/appengine/findit/waterfall/try_job_util.py#newcode172 appengine/findit/waterfall/try_job_util.py:172: if _ShouldBailOutForOutdatedBuild(build): On 2016/06/02 05:36:06, lijeffrey wrote: > On ...
4 years, 6 months ago (2016-06-02 23:32:52 UTC) #8
lijeffrey
ptal https://codereview.chromium.org/2026283002/diff/20001/appengine/findit/handlers/build_failure.py File appengine/findit/handlers/build_failure.py (right): https://codereview.chromium.org/2026283002/diff/20001/appengine/findit/handlers/build_failure.py#newcode256 appengine/findit/handlers/build_failure.py:256: (tests == [NON_SWARMING] and show_debug_info)): On 2016/06/02 23:32:52, ...
4 years, 5 months ago (2016-06-27 22:15:43 UTC) #9
chanli
On 2016/06/27 22:15:43, lijeffrey wrote: > ptal > > https://codereview.chromium.org/2026283002/diff/20001/appengine/findit/handlers/build_failure.py > File appengine/findit/handlers/build_failure.py (right): > ...
4 years, 5 months ago (2016-06-27 22:18:40 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2026283002/40001
4 years, 5 months ago (2016-06-27 22:37:51 UTC) #13
commit-bot: I haz the power
4 years, 5 months ago (2016-06-27 22:59:49 UTC) #15
Message was sent while issue was closed.
Committed patchset #3 (id:40001) as
https://chromium.googlesource.com/infra/infra/+/8c8e25309120e4e69ac183fe4a1a6...

Powered by Google App Engine
This is Rietveld 408576698