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

Side by Side Diff: tools/perf/core/trybot_command.py

Issue 2046823002: Add 64-bit bisect bot configs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « tools/mb/mb_config.pyl ('k') | 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 # 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
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
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
OLDNEW
« no previous file with comments | « tools/mb/mb_config.pyl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698