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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/goma.py

Issue 1414053007: add receipes for goma staging (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 1 month 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
(Empty)
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
3 # found in the LICENSE file.
4
5 from . import steps
6
7 SPEC = {
8 'builders': {
9 'Chromium Linux Goma Staging': {
10 'chromium_config': 'chromium',
11 'chromium_apply_config': ['goma_staging', 'clobber'],
12 'gclient_config': 'chromium',
13 'chromium_config_kwargs': {
14 'BUILD_CONFIG': 'Release',
15 'TARGET_BITS': 64,
16 },
17 'compile_targets': [ 'chromium_builder_tests' ],
18 'tests': steps.GOMA_TESTS,
19 'goma_staging': True,
20 'testing': {
21 'platform': 'linux',
22 },
23 },
24 'Chromium Mac Goma Staging': {
25 'chromium_config': 'chromium',
26 'chromium_apply_config': ['goma_staging', 'clobber'],
27 'gclient_config': 'chromium',
28 'chromium_config_kwargs': {
29 'BUILD_CONFIG': 'Release',
30 'TARGET_BITS': 64,
31 },
32 'compile_targets': [ 'chromium_builder_tests' ],
33 'tests': steps.GOMA_TESTS,
34 'goma_staging': True,
35 'testing': {
36 'platform': 'mac',
37 },
38 },
39 'Chromium Win Goma Staging': {
40 'chromium_config': 'chromium',
41 'chromium_apply_config': ['goma_staging', 'clobber'],
42 'gclient_config': 'chromium',
43 'chromium_config_kwargs': {
44 'BUILD_CONFIG': 'Release',
45 'TARGET_BITS': 64,
46 },
47 'compile_targets': [ 'chromium_builder_tests' ],
48 'tests': steps.GOMA_TESTS,
49 'goma_staging': True,
50 'testing': {
51 'platform': 'win',
52 },
53 },
54 },
55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698