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

Side by Side Diff: scripts/slave/recipes/v8/auto_roll_push.py

Issue 1134443004: V8 Buildbot: Fix module dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | scripts/slave/recipes/v8/auto_roll_release_process.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'chromium', 7 'chromium',
8 'gclient', 8 'gclient',
9 'path', 9 'path',
10 'properties', 10 'properties',
11 'python', 11 'python',
12 'raw_io', 12 'raw_io',
13 'step', 13 'step',
14 'v8',
14 ] 15 ]
15 16
16 def GenSteps(api): 17 def GenSteps(api):
17 api.chromium.cleanup_temp() 18 api.chromium.cleanup_temp()
18 api.gclient.set_config('v8') 19 api.gclient.set_config('v8')
19 api.bot_update.ensure_checkout(force=True, no_shallow=True) 20 api.bot_update.ensure_checkout(force=True, no_shallow=True)
20 21
21 step_result = api.python( 22 step_result = api.python(
22 'check roll status', 23 'check roll status',
23 api.path['build'].join('scripts', 'tools', 'runit.py'), 24 api.path['build'].join('scripts', 'tools', 'runit.py'),
(...skipping 23 matching lines...) Expand all
47 48
48 49
49 def GenTests(api): 50 def GenTests(api):
50 yield api.test('standard') + api.properties.generic(mastername='client.v8') 51 yield api.test('standard') + api.properties.generic(mastername='client.v8')
51 yield (api.test('rolling_deactivated') + 52 yield (api.test('rolling_deactivated') +
52 api.properties.generic(mastername='client.v8') + 53 api.properties.generic(mastername='client.v8') +
53 api.override_step_data( 54 api.override_step_data(
54 'check roll status', api.raw_io.stream_output('0', stream='stdout')) 55 'check roll status', api.raw_io.stream_output('0', stream='stdout'))
55 ) 56 )
56 57
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/v8/auto_roll_release_process.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698