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

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

Issue 2273833002: Make v8 recipes explicitly set GIT_MODE (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase 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
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 import re 5 import re
6 6
7 DEPS = [ 7 DEPS = [
8 'depot_tools/bot_update', 8 'depot_tools/bot_update',
9 'depot_tools/gclient', 9 'depot_tools/gclient',
10 'recipe_engine/json', 10 'recipe_engine/json',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 { 60 {
61 'name': 'verify suspects', 61 'name': 'verify suspects',
62 'regexp': r'Suspecting multiple commits(?:.|\s)*' 62 'regexp': r'Suspecting multiple commits(?:.|\s)*'
63 r'd290f204(?:.|\s)*c08e9525', 63 r'd290f204(?:.|\s)*c08e9525',
64 }, 64 },
65 ], 65 ],
66 }, 66 },
67 ] 67 ]
68 68
69 def RunSteps(api): 69 def RunSteps(api):
70 api.gclient.set_config('build') 70 api.gclient.set_config('build', GIT_MODE=True)
71 api.bot_update.ensure_checkout(force=True) 71 api.bot_update.ensure_checkout(force=True)
72 72
73 for test in TESTS: 73 for test in TESTS:
74 try: 74 try:
75 api.python( 75 api.python(
76 name=test['name'], 76 name=test['name'],
77 script=api.path['checkout'].join( 77 script=api.path['checkout'].join(
78 'scripts', 'tools', 'run_recipe.py'), 78 'scripts', 'tools', 'run_recipe.py'),
79 args=[ 79 args=[
80 'v8', 80 'v8',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 ) + 128 ) +
129 api.override_step_data( 129 api.override_step_data(
130 'Test auto-bisect on tester', 130 'Test auto-bisect on tester',
131 api.raw_io.stream_output( 131 api.raw_io.stream_output(
132 'Suspecting multiple commits\ndeadbeef\ndeadbeef', 132 'Suspecting multiple commits\ndeadbeef\ndeadbeef',
133 stream='stdout', 133 stream='stdout',
134 ), 134 ),
135 retcode=1, 135 retcode=1,
136 ) 136 )
137 ) 137 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698