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

Side by Side Diff: infra/recipes/chromium_trybot.py

Issue 2278873002: Add basic chromium_trybot recipe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | infra/recipes/chromium_trybot.expected/basic.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 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 DEPS = [
6 'build/chromium',
7 'build/chromium_android',
8 'build/chromium_checkout',
9 'build/chromium_swarming',
10 'build/chromium_tests',
11 'build/commit_position',
12 'build/file',
13 'build/filter',
14 'build/isolate',
15 'build/swarming',
16 'build/test_results',
17 'build/test_utils',
18 'depot_tools/bot_update',
19 'depot_tools/gclient',
20 'depot_tools/tryserver',
21 'recipe_engine/json',
22 'recipe_engine/path',
23 'recipe_engine/platform',
24 'recipe_engine/properties',
25 'recipe_engine/python',
26 'recipe_engine/raw_io',
27 'recipe_engine/step',
28 ]
29
30
31 def RunSteps(api):
32 return api.chromium_tests.trybot_steps(api)
33
34
35 def GenTests(api):
36 yield (
37 api.test('basic') +
38 api.platform('linux', 64) +
39 api.properties.tryserver(
40 path_config='kitchen',
41 mastername='tryserver.chromium.linux',
42 buildername='linux_chromium_rel_ng')
43 )
OLDNEW
« no previous file with comments | « no previous file | infra/recipes/chromium_trybot.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698