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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2014 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 from . import steps
6
7 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.
8 'builders': {
9 'Linux ASan LSan Builder': {
10 'recipe_config': 'chromium_asan',
11 'chromium_config_kwargs': {
12 'BUILD_CONFIG': 'Release',
13 'TARGET_BITS': 64,
14 },
15 'bot_type': 'builder_tester',
16 'testing': {'platform': 'linux'},
17 'testing': {
18 'platform': 'linux',
19 },
20 },
21 },
22 }
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698