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

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

Issue 169053007: Add a compile-only config to chromium_trybot (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 6 years, 10 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'chromium', 6 'chromium',
7 'gclient', 7 'gclient',
8 'itertools', 8 'itertools',
9 'json', 9 'json',
10 'path', 10 'path',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'compile_only': False, 74 'compile_only': False,
75 }, 75 },
76 'chromeos_clang': { 76 'chromeos_clang': {
77 'chromium_config': 'chromium_chromeos_clang', 77 'chromium_config': 'chromium_chromeos_clang',
78 'compile_only': True, 78 'compile_only': True,
79 }, 79 },
80 'clang': { 80 'clang': {
81 'chromium_config': 'chromium_clang', 81 'chromium_config': 'chromium_clang',
82 'compile_only': True, 82 'compile_only': True,
83 }, 83 },
84 'compile': {
agable 2014/02/19 01:56:26 Seems like we can probably have a more descriptive
Paweł Hajdan Jr. 2014/02/19 02:04:40 Not sure what would be better. Keeping it short se
85 'chromium_config': 'chromium',
86 'compile_only': True,
87 },
84 } 88 }
85 89
86 90
87 def GenSteps(api): 91 def GenSteps(api):
88 class CheckdepsTest(api.test_utils.Test): # pylint: disable=W0232 92 class CheckdepsTest(api.test_utils.Test): # pylint: disable=W0232
89 name = 'checkdeps' 93 name = 'checkdeps'
90 94
91 @staticmethod 95 @staticmethod
92 def compile_targets(): 96 def compile_targets():
93 return [] 97 return []
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 api.step_data('presubmit', retcode=1) 522 api.step_data('presubmit', retcode=1)
519 ) 523 )
520 524
521 yield ( 525 yield (
522 api.test('compile_failure') + 526 api.test('compile_failure') +
523 props() + 527 props() +
524 api.platform.name('win') + 528 api.platform.name('win') +
525 api.step_data('compile (with patch)', retcode=1) + 529 api.step_data('compile (with patch)', retcode=1) +
526 api.step_data('compile (with patch, lkcr, clobber)', retcode=1) 530 api.step_data('compile (with patch, lkcr, clobber)', retcode=1)
527 ) 531 )
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698