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

Side by Side Diff: scripts/slave/recipes/webrtc/auto_roll_webrtc_deps.py

Issue 2267293003: Make webrtc recipes explicitly set GIT_MODE (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | scripts/slave/recipes/webrtc/ios.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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 5
6 DEPS = [ 6 DEPS = [
7 'depot_tools/bot_update', 7 'depot_tools/bot_update',
8 'depot_tools/gclient', 8 'depot_tools/gclient',
9 'depot_tools/git', 9 'depot_tools/git',
10 'recipe_engine/path', 10 'recipe_engine/path',
11 'recipe_engine/properties', 11 'recipe_engine/properties',
12 'recipe_engine/python', 12 'recipe_engine/python',
13 'recipe_engine/raw_io', 13 'recipe_engine/raw_io',
14 'webrtc', 14 'webrtc',
15 ] 15 ]
16 16
17 17
18 def RunSteps(api): 18 def RunSteps(api):
19 api.gclient.set_config('webrtc') 19 api.gclient.set_config('webrtc', GIT_MODE=True)
20 20
21 step_result = api.python( 21 step_result = api.python(
22 'check roll status', 22 'check roll status',
23 api.path['build'].join('scripts', 'tools', 'pycurl.py'), 23 api.path['build'].join('scripts', 'tools', 'pycurl.py'),
24 args=['https://webrtc-roll-cr-rev-status.appspot.com/status'], 24 args=['https://webrtc-roll-cr-rev-status.appspot.com/status'],
25 stdout=api.raw_io.output(), 25 stdout=api.raw_io.output(),
26 step_test_data=lambda: api.raw_io.test_api.stream_output( 26 step_test_data=lambda: api.raw_io.test_api.stream_output(
27 '1', stream='stdout') 27 '1', stream='stdout')
28 ) 28 )
29 step_result.presentation.logs['stdout'] = step_result.stdout.splitlines() 29 step_result.presentation.logs['stdout'] = step_result.stdout.splitlines()
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 api.test('rolling_activated') + 62 api.test('rolling_activated') +
63 api.properties.generic(mastername='client.webrtc.fyi', 63 api.properties.generic(mastername='client.webrtc.fyi',
64 buildername='Auto-roll - WebRTC DEPS') 64 buildername='Auto-roll - WebRTC DEPS')
65 ) 65 )
66 yield (api.test('rolling_deactivated') + 66 yield (api.test('rolling_deactivated') +
67 api.properties.generic(mastername='client.webrtc.fyi', 67 api.properties.generic(mastername='client.webrtc.fyi',
68 buildername='Auto-roll - WebRTC DEPS') + 68 buildername='Auto-roll - WebRTC DEPS') +
69 api.override_step_data('check roll status', 69 api.override_step_data('check roll status',
70 api.raw_io.stream_output('0', stream='stdout')) 70 api.raw_io.stream_output('0', stream='stdout'))
71 ) 71 )
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/webrtc/ios.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698