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

Side by Side Diff: scripts/slave/recipe_modules/bot_update/example.py

Issue 1382203002: bot_update (+recipe_module): treat patch download as infra failure. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: NBits\ Created 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 DEPS = [ 5 DEPS = [
6 'bot_update', 6 'bot_update',
7 'gclient', 7 'gclient',
8 'path', 8 'path',
9 'properties', 9 'properties',
10 ] 10 ]
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 patchset=654321, 76 patchset=654321,
77 patch_url='http://src.chromium.org/foo/bar', 77 patch_url='http://src.chromium.org/foo/bar',
78 ) + api.step_data('bot_update', retcode=1) 78 ) + api.step_data('bot_update', retcode=1)
79 yield api.test('tryjob_fail_patch') + api.properties( 79 yield api.test('tryjob_fail_patch') + api.properties(
80 mastername='tryserver.chromium.linux', 80 mastername='tryserver.chromium.linux',
81 buildername='linux_rel', 81 buildername='linux_rel',
82 slavename='totallyaslave-c4', 82 slavename='totallyaslave-c4',
83 issue=12345, 83 issue=12345,
84 patchset=654321, 84 patchset=654321,
85 patch_url='http://src.chromium.org/foo/bar', 85 patch_url='http://src.chromium.org/foo/bar',
86 fail_patch=True, 86 fail_patch='apply',
87 ) + api.step_data('bot_update', retcode=88) 87 ) + api.step_data('bot_update', retcode=88)
88 yield api.test('tryjob_fail_patch_download') + api.properties(
89 mastername='tryserver.chromium.linux',
90 buildername='linux_rel',
91 slavename='totallyaslave-c4',
92 issue=12345,
93 patchset=654321,
94 patch_url='http://src.chromium.org/foo/bar',
95 fail_patch='download'
96 ) + api.step_data('bot_update', retcode=87)
88 yield api.test('forced') + api.properties( 97 yield api.test('forced') + api.properties(
89 mastername='experimental', 98 mastername='experimental',
90 buildername='Experimental Builder', 99 buildername='Experimental Builder',
91 slavename='somehost', 100 slavename='somehost',
92 force=1 101 force=1
93 ) 102 )
94 yield api.test('off') + api.properties( 103 yield api.test('off') + api.properties(
95 mastername='experimental', 104 mastername='experimental',
96 buildername='Experimental Builder', 105 buildername='Experimental Builder',
97 slavename='somehost', 106 slavename='somehost',
98 ) 107 )
99 yield api.test('svn_mode') + api.properties( 108 yield api.test('svn_mode') + api.properties(
100 mastername='experimental.svn', 109 mastername='experimental.svn',
101 buildername='Experimental SVN Builder', 110 buildername='Experimental SVN Builder',
102 slavename='somehost', 111 slavename='somehost',
103 force=1 112 force=1
104 ) 113 )
105 yield api.test('clobber') + api.properties( 114 yield api.test('clobber') + api.properties(
106 mastername='experimental', 115 mastername='experimental',
107 buildername='Experimental Builder', 116 buildername='Experimental Builder',
108 slavename='somehost', 117 slavename='somehost',
109 clobber=1 118 clobber=1
110 ) 119 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698