OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 import collections | 7 import collections |
8 import copy | 8 import copy |
9 import json | 9 import json |
10 import optparse | 10 import optparse |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 ['bb_check_webview_licenses', 'bb_compile', 'bb_run_findbugs', | 94 ['bb_check_webview_licenses', 'bb_compile', 'bb_run_findbugs', |
95 'bb_zip_build'], None, None), | 95 'bb_zip_build'], None, None), |
96 B('main-builder-rel', | 96 B('main-builder-rel', |
97 ['bb_compile', 'bb_zip_build'], None, None), | 97 ['bb_compile', 'bb_zip_build'], None, None), |
98 B('main-clang-builder', compile_step, None, None), | 98 B('main-clang-builder', compile_step, None, None), |
99 B('main-clobber', compile_step, None, None), | 99 B('main-clobber', compile_step, None, None), |
100 B('main-tests', std_test_steps, T(std_tests, [flakiness_server]), | 100 B('main-tests', std_test_steps, T(std_tests, [flakiness_server]), |
101 None), | 101 None), |
102 | 102 |
103 # Other waterfalls | 103 # Other waterfalls |
104 B('asan-builder', std_build_steps, None, None), | 104 B('asan-builder-tests', compile_step + ['bb_asan_tests_setup'], |
105 B('asan-tests', std_test_steps + ['bb_asan_tests_setup'], | |
106 T(std_tests, ['--asan']), None), | 105 T(std_tests, ['--asan']), None), |
107 B('chromedriver-fyi-tests-dbg', std_test_steps, T(['chromedriver']), | 106 B('chromedriver-fyi-tests-dbg', std_test_steps, T(['chromedriver']), |
108 None), | 107 None), |
109 B('fyi-builder-dbg', | 108 B('fyi-builder-dbg', |
110 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', | 109 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', |
111 'bb_run_findbugs', 'bb_zip_build'], None, None), | 110 'bb_run_findbugs', 'bb_zip_build'], None, None), |
112 B('fyi-builder-rel', | 111 B('fyi-builder-rel', |
113 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), | 112 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), |
114 B('fyi-tests', std_test_steps, | 113 B('fyi-tests', std_test_steps, |
115 T(std_tests, ['--experimental', flakiness_server]), None), | 114 T(std_tests, ['--experimental', flakiness_server]), None), |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 cwd=CHROME_SRC, | 217 cwd=CHROME_SRC, |
219 env=dict(os.environ, BUILDBOT_TESTING='1')) | 218 env=dict(os.environ, BUILDBOT_TESTING='1')) |
220 else: | 219 else: |
221 return_code = subprocess.call(command, cwd=CHROME_SRC, env=env) | 220 return_code = subprocess.call(command, cwd=CHROME_SRC, env=env) |
222 if return_code != 0: | 221 if return_code != 0: |
223 return return_code | 222 return return_code |
224 | 223 |
225 | 224 |
226 if __name__ == '__main__': | 225 if __name__ == '__main__': |
227 sys.exit(main(sys.argv)) | 226 sys.exit(main(sys.argv)) |
OLD | NEW |