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

Side by Side Diff: scripts/slave/recipe_modules/chromium/chromium_chromiumos.py

Issue 339183013: De-duplicate steps between chromium and chromium_trybot recipes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 years, 5 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 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 from . import steps 5 from . import steps
6 6
7 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-chromiumos-archive', 9 'build_gs_bucket': 'chromium-chromiumos-archive',
10 }, 10 },
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'unit_tests', 50 'unit_tests',
51 'url_unittests', 51 'url_unittests',
52 'views_unittests', 52 'views_unittests',
53 ], 53 ],
54 'tests': [ 54 'tests': [
55 steps.ArchiveBuildStep( 55 steps.ArchiveBuildStep(
56 'chromium-browser-snapshots', 56 'chromium-browser-snapshots',
57 gs_acl='public-read', 57 gs_acl='public-read',
58 ), 58 ),
59 steps.Deps2GitTest(), 59 steps.Deps2GitTest(),
60 steps.Deps2SubmodulesTest(),
agable 2014/06/27 18:34:42 Why is this removed in this CL? I mean, it should
Paweł Hajdan Jr. 2014/06/27 18:58:22 That's right, because nothing changes. Deps2Git fr
agable 2014/06/27 21:04:22 That's terrifying that deps2git runs it, and that
61 steps.CheckpermsTest(), 60 steps.CheckpermsTest(),
62 ], 61 ],
63 'testing': { 62 'testing': {
64 'platform': 'linux', 63 'platform': 'linux',
65 }, 64 },
66 }, 65 },
67 66
68 'Linux ChromiumOS Builder': { 67 'Linux ChromiumOS Builder': {
69 'recipe_config': 'chromium_chromeos', 68 'recipe_config': 'chromium_chromeos',
70 'chromium_config_kwargs': { 69 'chromium_config_kwargs': {
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 'tests': [ 209 'tests': [
211 steps.DynamicGTestTests('Linux ChromiumOS Tests (dbg)(3)'), 210 steps.DynamicGTestTests('Linux ChromiumOS Tests (dbg)(3)'),
212 ], 211 ],
213 'parent_buildername': 'Linux ChromiumOS Builder (dbg)', 212 'parent_buildername': 'Linux ChromiumOS Builder (dbg)',
214 'testing': { 213 'testing': {
215 'platform': 'linux', 214 'platform': 'linux',
216 }, 215 },
217 }, 216 },
218 }, 217 },
219 } 218 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698