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

Unified Diff: scripts/slave/recipe_modules/chromium/tryserver_chromium_linux.py

Issue 449993005: Converted the tryserver.chromium.linux asan builder to a recipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Using chromium_trybot recipe and dropped compile_targets/tests. Created 6 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
Index: scripts/slave/recipe_modules/chromium/tryserver_chromium_linux.py
diff --git a/scripts/slave/recipe_modules/chromium/tryserver_chromium_linux.py b/scripts/slave/recipe_modules/chromium/tryserver_chromium_linux.py
new file mode 100644
index 0000000000000000000000000000000000000000..515b0ad0b014c20088d8c5f6c4c8a72dbe2fc614
--- /dev/null
+++ b/scripts/slave/recipe_modules/chromium/tryserver_chromium_linux.py
@@ -0,0 +1,23 @@
+# Copyright 2014 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 = {
Paweł Hajdan Jr. 2014/08/14 11:25:39 This shouldn't be needed. chromium_trybot does not
cmumford 2014/08/26 16:00:43 Done.
+ 'builders': {
+ 'Linux ASan LSan Builder': {
+ 'recipe_config': 'chromium_asan',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder_tester',
+ 'testing': {'platform': 'linux'},
+ 'testing': {
+ 'platform': 'linux',
+ },
+ },
+ },
+}
+

Powered by Google App Engine
This is Rietveld 408576698