OLD | NEW |
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 import argparse | 5 import argparse |
6 import os | 6 import os |
7 import logging | 7 import logging |
8 import platform | 8 import platform |
9 import re | 9 import re |
10 import subprocess | 10 import subprocess |
(...skipping 21 matching lines...) Expand all Loading... |
32 'mac_perf_bisect_builder', | 32 'mac_perf_bisect_builder', |
33 'android_perf_bisect_builder', | 33 'android_perf_bisect_builder', |
34 'android_arm64_perf_bisect_builder', | 34 'android_arm64_perf_bisect_builder', |
35 # Bisect FYI bots are not meant for testing actual perf regressions. | 35 # Bisect FYI bots are not meant for testing actual perf regressions. |
36 # Hardware configuration on these bots is different from actual bisect bot | 36 # Hardware configuration on these bots is different from actual bisect bot |
37 # and these bots runs E2E integration tests for auto-bisect | 37 # and these bots runs E2E integration tests for auto-bisect |
38 # using dummy benchmarks. | 38 # using dummy benchmarks. |
39 'linux_fyi_perf_bisect', | 39 'linux_fyi_perf_bisect', |
40 'mac_fyi_perf_bisect', | 40 'mac_fyi_perf_bisect', |
41 'win_fyi_perf_bisect', | 41 'win_fyi_perf_bisect', |
| 42 'winx64_fyi_perf_bisect', |
42 # CQ bots on tryserver.chromium.perf | 43 # CQ bots on tryserver.chromium.perf |
43 'android_s5_perf_cq', | 44 'android_s5_perf_cq', |
44 'winx64_10_perf_cq', | 45 'winx64_10_perf_cq', |
45 'mac_retina_perf_cq', | 46 'mac_retina_perf_cq', |
46 'linux_perf_cq', | 47 'linux_perf_cq', |
47 } | 48 } |
48 | 49 |
49 INCLUDE_BOTS = [ | 50 INCLUDE_BOTS = [ |
50 'all', | 51 'all', |
51 'all-win', | 52 'all-win', |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 return ERROR # pylint: disable=lost-exception | 503 return ERROR # pylint: disable=lost-exception |
503 logging.info('Checked out original branch: %s', original_branchname) | 504 logging.info('Checked out original branch: %s', original_branchname) |
504 returncode, out, err = _RunProcess( | 505 returncode, out, err = _RunProcess( |
505 [_GIT_CMD, 'branch', '-D', 'telemetry-tryjob']) | 506 [_GIT_CMD, 'branch', '-D', 'telemetry-tryjob']) |
506 if returncode: | 507 if returncode: |
507 logging.error('Could not delete telemetry-tryjob branch. ' | 508 logging.error('Could not delete telemetry-tryjob branch. ' |
508 'Please delete it manually: %s', err) | 509 'Please delete it manually: %s', err) |
509 return ERROR # pylint: disable=lost-exception | 510 return ERROR # pylint: disable=lost-exception |
510 logging.info('Deleted temp branch: telemetry-tryjob') | 511 logging.info('Deleted temp branch: telemetry-tryjob') |
511 return SUCCESS | 512 return SUCCESS |
OLD | NEW |