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

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

Issue 2491033005: Recipe changes for chormium.android.fyi master (Closed)
Patch Set: Fix Created 4 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 2014 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
8 SPEC = {
9 'settings': {
10 'build_gs_bucket': 'chromium-android-archive',
11 },
12 'builders': {
13 'Jelly Bean Tester': {
14 'chromium_config': 'android',
15 'gclient_config': 'chromium',
16 'gclient_apply_config': ['android'],
17 'chromium_config_kwargs': {
18 'BUILD_CONFIG': 'Debug',
19 'TARGET_PLATFORM': 'android',
20 },
21 'parent_buildername': 'Android arm Builder (dbg)',
22 'parent_mastername': 'chromium.android',
23 'bot_type': 'tester',
24 'android_config': 'main_builder_mb',
25 'test_results_config': 'public_server',
26 'testing': {
27 'platform': 'linux',
28 },
29 },
30
31 'KitKat Tablet Tester': {
bpastene 2016/11/12 00:19:03 Is this bot getting moved over? It's not on https:
hinoka 2016/11/12 01:16:48 this wasn't supposed to be here
32 'chromium_config': 'android',
33 'gclient_config': 'chromium',
34 'gclient_apply_config': ['android'],
35 'chromium_config_kwargs': {
36 'BUILD_CONFIG': 'Debug',
37 'TARGET_PLATFORM': 'android',
38 },
39 'parent_buildername': 'Android arm Builder (dbg)',
40 'parent_mastername': 'chromium.android',
41 'bot_type': 'tester',
42 'android_config': 'main_builder_mb',
43 'test_results_config': 'public_server',
44 'testing': {
45 'platform': 'linux',
46 },
47 },
48
49 'Lollipop Consumer Tester': {
50 'chromium_config': 'android',
51 'gclient_config': 'chromium',
52 'gclient_apply_config': ['android'],
53 'chromium_config_kwargs': {
54 'BUILD_CONFIG': 'Debug',
55 'TARGET_PLATFORM': 'android',
56 },
57 'parent_buildername': 'Android arm64 Builder (dbg)',
58 'parent_mastername': 'chromium.android',
59 'bot_type': 'tester',
60 'android_config': 'arm64_builder_mb',
61 'test_results_config': 'public_server',
62 'testing': {
63 'platform': 'linux',
64 },
65 },
66
67 'Lollipop Low-end Tester': {
68 'chromium_config': 'android',
69 'gclient_config': 'chromium',
70 'gclient_apply_config': ['android'],
71 'chromium_config_kwargs': {
72 'BUILD_CONFIG': 'Debug',
73 'TARGET_PLATFORM': 'android',
74 },
75 'parent_buildername': 'Android arm Builder (dbg)',
76 'bot_type': 'tester',
77 'android_config': 'main_builder_mb',
78 'test_results_config': 'public_server',
79 'testing': {
80 'platform': 'linux',
81 },
82 },
83 },
84 }
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/chromium_android.py ('k') | scripts/slave/recipes/chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698