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

Side by Side Diff: scripts/slave/recipes/nacl/sdk.py

Issue 2332213003: Add ensure_goma to NaCl SDK recipies (Closed)
Patch Set: Created 4 years, 3 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 DEPS = [ 5 DEPS = [
6 'depot_tools/bot_update', 6 'depot_tools/bot_update',
7 'chromium', 7 'chromium',
8 'depot_tools/gclient', 8 'depot_tools/gclient',
9 'recipe_engine/path', 9 'recipe_engine/path',
10 'recipe_engine/platform', 10 'recipe_engine/platform',
11 'recipe_engine/properties', 11 'recipe_engine/properties',
12 'recipe_engine/python', 12 'recipe_engine/python',
13 'depot_tools/tryserver', 13 'depot_tools/tryserver',
14 ] 14 ]
15 15
16 16
17 def RunSteps(api): 17 def RunSteps(api):
18 api.chromium.set_config('chromium') 18 api.chromium.set_config('chromium')
19 api.chromium.apply_config('mb') 19 api.chromium.apply_config('mb')
20 api.gclient.set_config('chromium') 20 api.gclient.set_config('chromium')
21 api.bot_update.ensure_checkout() 21 api.bot_update.ensure_checkout()
22 api.tryserver.maybe_apply_issue() 22 api.tryserver.maybe_apply_issue()
23 api.chromium.ensure_goma()
23 api.chromium.runhooks() 24 api.chromium.runhooks()
24 api.chromium.run_mb( 25 api.chromium.run_mb(
25 api.properties.get('mastername'), api.properties.get('buildername')) 26 api.properties.get('mastername'), api.properties.get('buildername'))
26 api.chromium.cleanup_temp() 27 api.chromium.cleanup_temp()
27 api.chromium.compile(['chrome']) 28 api.chromium.compile(['chrome'])
28 api.python( 29 api.python(
29 'annotated_steps', 30 'annotated_steps',
30 api.path['build'].join( 31 api.path['build'].join(
31 'scripts', 'slave', 'chromium', 'nacl_sdk_buildbot_run.py'), 32 'scripts', 'slave', 'chromium', 'nacl_sdk_buildbot_run.py'),
32 allow_subannotations=True) 33 allow_subannotations=True)
33 34
34 35
35 def GenTests(api): 36 def GenTests(api):
36 yield ( 37 yield (
37 api.test('basic') + 38 api.test('basic') +
38 api.properties.generic() + 39 api.properties.generic() +
39 api.platform('linux', 64) 40 api.platform('linux', 64)
40 ) 41 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698