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

Side by Side Diff: scripts/slave/recipes/chromium_trybot.py

Issue 943113002: Add new site isolation trybot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 10 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 infra.libs.infra_types import freeze 5 from infra.libs.infra_types import freeze
6 6
7 DEPS = [ 7 DEPS = [
8 'bot_update', 8 'bot_update',
9 'chromium', 9 'chromium',
10 'chromium_android', 10 'chromium_android',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 'based_on_main_waterfall': { 226 'based_on_main_waterfall': {
227 'mastername': 'chromium.linux', 227 'mastername': 'chromium.linux',
228 'buildername': 'Linux Builder (dbg)(32)', 228 'buildername': 'Linux Builder (dbg)(32)',
229 }, 229 },
230 # Skip somewhat expensive isolate step where it's not needed. 230 # Skip somewhat expensive isolate step where it's not needed.
231 'disable_isolate': True, 231 'disable_isolate': True,
232 'testing': { 232 'testing': {
233 'platform': 'linux', 233 'platform': 'linux',
234 }, 234 },
235 }, 235 },
236 'linux_site_isolation': {
237 'based_on_main_waterfall': {
238 'mastername': 'chromium.fyi',
239 'buildername': 'Site Isolation Linux',
240 'tester': 'Site Isolation Linux',
hinoka 2015/02/21 01:29:11 I don't think you need this. I think this is just
alexmos 2015/02/21 01:52:57 Done.
241 },
242 'testing': {
243 'platform': 'linux',
244 },
245 },
236 'linux_chromium_practice_rel_ng': { 246 'linux_chromium_practice_rel_ng': {
237 'based_on_main_waterfall': { 247 'based_on_main_waterfall': {
238 'mastername': 'chromium.fyi', 248 'mastername': 'chromium.fyi',
239 'buildername': 'ChromiumPracticeFullTester', 249 'buildername': 'ChromiumPracticeFullTester',
240 }, 250 },
241 'testing': { 251 'testing': {
242 'platform': 'linux', 252 'platform': 'linux',
243 }, 253 },
244 }, 254 },
245 }, 255 },
(...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 tryserver=True) 1072 tryserver=True)
1063 yield step_failure(mastername='tryserver.chromium.linux', 1073 yield step_failure(mastername='tryserver.chromium.linux',
1064 buildername='android_clang_dbg_recipe', 1074 buildername='android_clang_dbg_recipe',
1065 steps=['check licenses (with patch)'], 1075 steps=['check licenses (with patch)'],
1066 tryserver=True) 1076 tryserver=True)
1067 yield step_failure(mastername='tryserver.chromium.linux', 1077 yield step_failure(mastername='tryserver.chromium.linux',
1068 buildername='android_clang_dbg_recipe', 1078 buildername='android_clang_dbg_recipe',
1069 steps=['check licenses (with patch)', 1079 steps=['check licenses (with patch)',
1070 'check licenses (without patch)'], 1080 'check licenses (without patch)'],
1071 tryserver=True) 1081 tryserver=True)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698