OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2015 The Chromium Authors. All rights reserved. | 2 # Copyright 2015 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 import argparse | 6 import argparse |
7 import collections | 7 import collections |
8 import logging | 8 import logging |
9 import os | 9 import os |
10 import re | 10 import re |
11 import subprocess | 11 import subprocess |
12 import sys | 12 import sys |
13 import time | 13 import time |
14 | 14 |
15 extra_cq_trybots = [ | 15 extra_cq_trybots = [ |
16 { | 16 { |
17 "mastername": "master.tryserver.chromium.win", | 17 "mastername": "master.tryserver.chromium.win", |
18 "buildernames": ["win_optional_gpu_tests_rel"] | 18 "buildernames": ["win_optional_gpu_tests_rel"] |
19 }, | 19 }, |
20 { | 20 { |
21 "mastername": "master.tryserver.chromium.mac", | 21 "mastername": "master.tryserver.chromium.mac", |
22 "buildernames": ["mac_optional_gpu_tests_rel"] | 22 "buildernames": ["mac_optional_gpu_tests_rel"] |
23 }, | 23 }, |
24 { | 24 { |
25 "mastername": "master.tryserver.chromium.linux", | 25 "mastername": "master.tryserver.chromium.linux", |
26 "buildernames": ["linux_optional_gpu_tests_rel"] | 26 "buildernames": ["linux_optional_gpu_tests_rel"] |
| 27 }, |
| 28 { |
| 29 "mastername": "master.tryserver.chromium.android", |
| 30 "buildernames": ["android_optional_gpu_tests_rel"] |
27 } | 31 } |
28 ] | 32 ] |
29 extra_fyi_trybots = [ | 33 extra_fyi_trybots = [ |
30 { | 34 { |
31 "mastername": "master.tryserver.chromium.win", | 35 "mastername": "master.tryserver.chromium.win", |
32 "buildernames": ["win_clang_dbg"] | 36 "buildernames": ["win_clang_dbg"] |
33 } | 37 } |
34 ] | 38 ] |
35 | 39 |
36 SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) | 40 SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 logging.basicConfig(level=logging.ERROR) | 409 logging.basicConfig(level=logging.ERROR) |
406 | 410 |
407 autoroller = AutoRoller(SRC_DIR) | 411 autoroller = AutoRoller(SRC_DIR) |
408 if args.abort: | 412 if args.abort: |
409 return autoroller.Abort() | 413 return autoroller.Abort() |
410 else: | 414 else: |
411 return autoroller.PrepareRoll(args.ignore_checks, args.tbr, args.commit) | 415 return autoroller.PrepareRoll(args.ignore_checks, args.tbr, args.commit) |
412 | 416 |
413 if __name__ == '__main__': | 417 if __name__ == '__main__': |
414 sys.exit(main()) | 418 sys.exit(main()) |
OLD | NEW |