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

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

Issue 1776893002: Clang upload bots: don't run hooks or mb. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: remove unused vars to make presubmit happy Created 4 years, 9 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 recipe_engine.types import freeze 5 from recipe_engine.types import freeze
6 6
7 DEPS = [ 7 DEPS = [
8 'depot_tools/bot_update', 8 'depot_tools/bot_update',
9 'chromium', 9 'chromium',
10 'file', 10 'file',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 'TARGET_PLATFORM': 'win', 53 'TARGET_PLATFORM': 'win',
54 'TARGET_BITS': 32, 54 'TARGET_BITS': 32,
55 }, 55 },
56 }, 56 },
57 }, 57 },
58 }, 58 },
59 }) 59 })
60 60
61 61
62 def RunSteps(api): 62 def RunSteps(api):
63 mastername = api.m.properties['mastername'] 63 _, bot_config = api.chromium.configure_bot(BUILDERS)
64 buildername, bot_config = api.chromium.configure_bot(BUILDERS, ['mb'])
65 64
66 api.bot_update.ensure_checkout( 65 api.bot_update.ensure_checkout(
67 force=True, patch_root=bot_config.get('root_override')) 66 force=True, patch_root=bot_config.get('root_override'))
68 67
69 api.chromium.runhooks() 68 api.python('download binutils',
70 69 api.path['checkout'].join('third_party', 'binutils', 'download.py'))
71 api.chromium.run_mb(mastername, buildername)
72 70
73 api.python( 71 api.python(
74 'package clang', 72 'package clang',
75 api.path['checkout'].join('tools', 'clang', 'scripts', 'package.py')) 73 api.path['checkout'].join('tools', 'clang', 'scripts', 'package.py'))
76 74
77 75
78 def GenTests(api): 76 def GenTests(api):
79 for test in api.chromium.gen_tests_for_builders(BUILDERS): 77 for test in api.chromium.gen_tests_for_builders(BUILDERS):
80 yield test 78 yield test
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium_clang_upload.expected/full_tryserver_chromium_linux_linux_chromium_clang_upload.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698