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

Unified Diff: infra/recipes/chromium.py

Issue 2163223002: Add basic chromium recipe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « infra/recipes/canary.expected/basic.json ('k') | infra/recipes/chromium.expected/builder.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/recipes/chromium.py
diff --git a/infra/recipes/chromium.py b/infra/recipes/chromium.py
new file mode 100644
index 0000000000000000000000000000000000000000..1eb1914e84e4a1c090eb1591845c8862e4a3db0b
--- /dev/null
+++ b/infra/recipes/chromium.py
@@ -0,0 +1,38 @@
+# 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_swarming',
+ 'build/chromium_tests',
+ 'build/test_utils',
+ 'recipe_engine/properties',
+ 'recipe_engine/step',
+]
+
+
+from recipe_engine import config_types
+
+
+def RunSteps(api):
+ api.chromium_tests.main_waterfall_steps(api)
+
+
+def GenTests(api):
+ yield (
+ api.test('builder') +
+ api.properties.generic(
+ mastername='chromium.fyi',
+ buildername='Linux remote_run Builder',
+ path_config='kitchen')
+ )
+
+ yield (
+ api.test('tester') +
+ api.properties.generic(
+ mastername='chromium.fyi',
+ buildername='Linux remote_run Tester',
+ parent_buildername='Linux remote_run Builder',
+ path_config='kitchen')
+ )
« no previous file with comments | « infra/recipes/canary.expected/basic.json ('k') | infra/recipes/chromium.expected/builder.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698