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

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

Issue 2269263002: Make all the rest of the recipes explicitly specify GIT_MODE (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase 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 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 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 'depot_tools/gclient', 10 'depot_tools/gclient',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 tests_that_do_not_pass = freeze([ 58 tests_that_do_not_pass = freeze([
59 ]) 59 ])
60 60
61 dbus_tests = freeze([ 61 dbus_tests = freeze([
62 'dbus_unittests', 62 'dbus_unittests',
63 ]) 63 ])
64 64
65 def RunSteps(api): 65 def RunSteps(api):
66 66
67 api.chromium.set_config('chromium', BUILD_CONFIG='Debug') 67 api.chromium.set_config('chromium', BUILD_CONFIG='Debug')
68 api.gclient.set_config('chromium', BUILD_CONFIG='Debug') 68 api.gclient.set_config('chromium', BUILD_CONFIG='Debug', GIT_MODE=True)
69 69
70 api.bot_update.ensure_checkout() 70 api.bot_update.ensure_checkout()
71 71
72 api.chromium.c.gyp_env.GYP_DEFINES['embedded'] = 1 72 api.chromium.c.gyp_env.GYP_DEFINES['embedded'] = 1
73 73
74 api.chromium.runhooks() 74 api.chromium.runhooks()
75 api.chromium.compile(['content_shell'], name='compile content_shell') 75 api.chromium.compile(['content_shell'], name='compile content_shell')
76 76
77 try: 77 try:
78 api.python('check ecs deps', api.path['checkout'].join('tools', 78 api.python('check ecs deps', api.path['checkout'].join('tools',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 slavename="test_slave") 123 slavename="test_slave")
124 ) 124 )
125 125
126 yield ( 126 yield (
127 api.test('check_ecs_deps_fail') + 127 api.test('check_ecs_deps_fail') +
128 api.properties.scheduled(mastername="chromium.fyi", 128 api.properties.scheduled(mastername="chromium.fyi",
129 buildername='linux_ecs_ozone', 129 buildername='linux_ecs_ozone',
130 slavename="test_slave") + 130 slavename="test_slave") +
131 api.step_data('check ecs deps', retcode=1) 131 api.step_data('check ecs deps', retcode=1)
132 ) 132 )
OLDNEW
« no previous file with comments | « scripts/slave/recipes/ndk/ndk_buildbot.expected/basic.json ('k') | scripts/slave/recipes/ozone_ecs.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698