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

Unified 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, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | infra/recipes/chromium_trybot.expected/basic.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/recipes/chromium_trybot.py
diff --git a/infra/recipes/chromium_trybot.py b/infra/recipes/chromium_trybot.py
new file mode 100644
index 0000000000000000000000000000000000000000..5f2ae4b5df4909e84eb7fea2436769eb384db5d8
--- /dev/null
+++ b/infra/recipes/chromium_trybot.py
@@ -0,0 +1,43 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+DEPS = [
+ 'build/chromium',
+ 'build/chromium_android',
+ 'build/chromium_checkout',
+ 'build/chromium_swarming',
+ 'build/chromium_tests',
+ 'build/commit_position',
+ 'build/file',
+ 'build/filter',
+ 'build/isolate',
+ 'build/swarming',
+ 'build/test_results',
+ 'build/test_utils',
+ 'depot_tools/bot_update',
+ 'depot_tools/gclient',
+ 'depot_tools/tryserver',
+ 'recipe_engine/json',
+ 'recipe_engine/path',
+ 'recipe_engine/platform',
+ 'recipe_engine/properties',
+ 'recipe_engine/python',
+ 'recipe_engine/raw_io',
+ 'recipe_engine/step',
+]
+
+
+def RunSteps(api):
+ return api.chromium_tests.trybot_steps(api)
+
+
+def GenTests(api):
+ yield (
+ api.test('basic') +
+ api.platform('linux', 64) +
+ api.properties.tryserver(
+ path_config='kitchen',
+ mastername='tryserver.chromium.linux',
+ buildername='linux_chromium_rel_ng')
+ )
« 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