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

Side by Side Diff: tools/roll_angle.py

Issue 2152233002: Test ANGLE rolls on android_optional_gpu_tests_rel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698