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

Unified 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, 2 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
Index: scripts/slave/recipe_modules/chromium_tests/goma.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/goma.py b/scripts/slave/recipe_modules/chromium_tests/goma.py
new file mode 100644
index 0000000000000000000000000000000000000000..23df4bf86bc1aac8682a90a42cef9f0ee07d21f3
--- /dev/null
+++ b/scripts/slave/recipe_modules/chromium_tests/goma.py
@@ -0,0 +1,55 @@
+# Copyright 2015 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.
+
+from . import steps
+
+SPEC = {
+ 'builders': {
+ 'Chromium Linux Goma Staging': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['goma_staging', 'clobber'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'compile_targets': [ 'chromium_builder_tests' ],
+ 'tests': steps.GOMA_TESTS,
+ 'goma_staging': True,
+ 'testing': {
+ 'platform': 'linux',
+ },
+ },
+ 'Chromium Mac Goma Staging': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['goma_staging', 'clobber'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'compile_targets': [ 'chromium_builder_tests' ],
+ 'tests': steps.GOMA_TESTS,
+ 'goma_staging': True,
+ 'testing': {
+ 'platform': 'mac',
+ },
+ },
+ 'Chromium Win Goma Staging': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['goma_staging', 'clobber'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'compile_targets': [ 'chromium_builder_tests' ],
+ 'tests': steps.GOMA_TESTS,
+ 'goma_staging': True,
+ 'testing': {
+ 'platform': 'win',
+ },
+ },
+ },
+}

Powered by Google App Engine
This is Rietveld 408576698