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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_lkgr.py

Issue 2055503003: lkgr: Convert mac asan bots to recipes/ (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Created 4 years, 6 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from . import steps 5 from . import steps
6 6
7 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 SPEC = { 9 SPEC = {
10 'builders': { 10 'builders': {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 }, 69 },
70 'bot_type': 'builder', 70 'bot_type': 'builder',
71 'disable_tests': True, 71 'disable_tests': True,
72 'cf_archive_build': True, 72 'cf_archive_build': True,
73 'cf_gs_bucket': 'chromium-browser-syzyasan', 73 'cf_gs_bucket': 'chromium-browser-syzyasan',
74 'cf_gs_acl': 'public-read', 74 'cf_gs_acl': 'public-read',
75 'cf_archive_name': 'asan', 75 'cf_archive_name': 'asan',
76 'compile_targets': [ 'chromium_builder_asan' ], 76 'compile_targets': [ 'chromium_builder_asan' ],
77 'testing': { 'platform': 'win' }, 77 'testing': { 'platform': 'win' },
78 }, 78 },
79 'Mac ASAN Release': {
80 'chromium_config': 'chromium_mac_asan',
81 'chromium_apply_config': ['mb', 'clobber', 'v8_verify_heap',
82 'enable_ipc_fuzzer'],
83 'gclient_config': 'chromium',
84 'chromium_config_kwargs': {
85 'BUILD_CONFIG': 'Release',
86 'TARGET_BITS': 64,
87 },
88 'bot_type': 'builder',
89 'disable_tests': True,
90 'cf_archive_build': True,
91 'cf_gs_bucket': 'chromium-browser-asan',
92 'cf_gs_acl': 'public-read',
93 'cf_archive_name': 'asan',
94 'compile_targets': [ 'chromium_builder_asan' ],
95 'testing': { 'platform': 'mac' },
96 },
97 'Mac ASAN Release Media': {
98 'chromium_config': 'chromium_mac_asan',
99 'chromium_apply_config': ['mb', 'clobber', 'v8_verify_heap',
100 'enable_ipc_fuzzer', 'chrome_with_codecs'],
101 'gclient_config': 'chromium',
102 'chromium_config_kwargs': {
103 'BUILD_CONFIG': 'Release',
104 'TARGET_BITS': 64,
105 },
106 'bot_type': 'builder',
107 'disable_tests': True,
108 'cf_archive_build': True,
109 'cf_gs_bucket': 'chrome-test-builds/media',
110 'cf_gs_acl': 'public-read',
111 'cf_archive_name': 'asan',
112 'compile_targets': [ 'chromium_builder_asan' ],
113 'testing': { 'platform': 'mac' },
114 },
115 'Mac ASAN Debug': {
116 'chromium_config': 'chromium_mac_asan',
117 'chromium_apply_config': ['mb', 'clobber', 'v8_verify_heap',
118 'enable_ipc_fuzzer'],
119 'gclient_config': 'chromium',
120 'chromium_config_kwargs': {
121 'BUILD_CONFIG': 'Debug',
122 'TARGET_BITS': 64,
123 },
124 'bot_type': 'builder',
125 'disable_tests': True,
126 'cf_archive_build': True,
127 'cf_gs_bucket': 'chromium-browser-asan',
128 'cf_gs_acl': 'public-read',
129 'cf_archive_name': 'asan',
130 'compile_targets': [ 'chromium_builder_asan' ],
131 'testing': { 'platform': 'mac' },
132 },
79 # The build process for TSan is described at 133 # The build process for TSan is described at
80 # http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 134 # http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2
81 'TSAN Release': { 135 'TSAN Release': {
82 'chromium_config': 'chromium_clang', 136 'chromium_config': 'chromium_clang',
83 'chromium_apply_config': ['mb', 'tsan2', 'clobber'], 137 'chromium_apply_config': ['mb', 'tsan2', 'clobber'],
84 'gclient_config': 'chromium', 138 'gclient_config': 'chromium',
85 'chromium_config_kwargs': { 139 'chromium_config_kwargs': {
86 'BUILD_CONFIG': 'Release', 140 'BUILD_CONFIG': 'Release',
87 'TARGET_BITS': 64, 141 'TARGET_BITS': 64,
88 }, 142 },
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 'cf_archive_build': True, 238 'cf_archive_build': True,
185 'cf_gs_bucket': 'chromium-browser-ubsan', 239 'cf_gs_bucket': 'chromium-browser-ubsan',
186 'cf_gs_acl': 'public-read', 240 'cf_gs_acl': 'public-read',
187 'cf_archive_name': 'ubsan-vptr', 241 'cf_archive_name': 'ubsan-vptr',
188 'cf_archive_subdir_suffix': 'vptr', 242 'cf_archive_subdir_suffix': 'vptr',
189 'compile_targets': [ 'chromium_builder_asan' ], 243 'compile_targets': [ 'chromium_builder_asan' ],
190 'testing': { 'platform': 'linux' }, 244 'testing': { 'platform': 'linux' },
191 }, 245 },
192 }, 246 },
193 } 247 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698