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

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

Issue 2246503002: V8: Make sure infra failures fail overall build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix Created 4 years, 4 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'archive', 6 'archive',
7 'chromium', 7 'chromium',
8 'depot_tools/gclient', 8 'depot_tools/gclient',
9 'recipe_engine/json', 9 'recipe_engine/json',
10 'recipe_engine/path', 10 'recipe_engine/path',
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 108
109 yield ( 109 yield (
110 api.v8.test( 110 api.v8.test(
111 'client.v8.branches', 111 'client.v8.branches',
112 'V8 Linux - beta branch', 112 'V8 Linux - beta branch',
113 'branch_sync_failure', 113 'branch_sync_failure',
114 ) + 114 ) +
115 api.step_data('bot_update', retcode=1) 115 api.step_data('bot_update', retcode=1)
116 ) 116 )
117 117
118 yield (
119 api.v8.test(
120 'client.v8',
121 'V8 Linux',
122 'swarming_collect_failure',
123 ) +
124 api.step_data('Check', retcode=1)
125 )
126
118 # Simulate a tryjob triggered by the CQ for setting up different swarming 127 # Simulate a tryjob triggered by the CQ for setting up different swarming
119 # default tags. 128 # default tags.
120 yield ( 129 yield (
121 api.v8.test( 130 api.v8.test(
122 'tryserver.v8', 131 'tryserver.v8',
123 'v8_linux_rel_ng_triggered', 132 'v8_linux_rel_ng_triggered',
124 'triggered_by_cq', 133 'triggered_by_cq',
125 requester='commit-bot@chromium.org', 134 requester='commit-bot@chromium.org',
126 patch_project='v8', 135 patch_project='v8',
127 blamelist=['dude@chromium.org'], 136 blamelist=['dude@chromium.org'],
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 ) + 403 ) +
395 api.override_step_data( 404 api.override_step_data(
396 'generate_build_files', api.raw_io.stream_output( 405 'generate_build_files', api.raw_io.stream_output(
397 'Writing """\\\n' 406 'Writing """\\\n'
398 'goma_dir = "/b/build/slave/cache/cipd/goma"\n' 407 'goma_dir = "/b/build/slave/cache/cipd/goma"\n'
399 'target_cpu = "x64"\n' 408 'target_cpu = "x64"\n'
400 'use_goma = true\n' 409 'use_goma = true\n'
401 '""" to /path/to/args.gn.\n' 410 '""" to /path/to/args.gn.\n'
402 'moar\n')) 411 'moar\n'))
403 ) 412 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698