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

Unified Diff: tools/bots/compiler.py

Issue 1726583002: Remove unused builder-tag on mac builders. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Remove mac 10.7 support Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/corelib/corelib.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/compiler.py
diff --git a/tools/bots/compiler.py b/tools/bots/compiler.py
index a784a03ca7cf27c6848ad828d095c548c26e625e..581d762f32d2130b71e7975d0a5bd475b79f691f 100644
--- a/tools/bots/compiler.py
+++ b/tools/bots/compiler.py
@@ -143,9 +143,8 @@ def GetBuildInfo(builder_name, is_buildbot):
if system.startswith('win'):
system = 'windows'
- # We have both 10.8 and 10.7 bots, functionality is the same.
- if system == 'mac10.7' or system == 'mac10.8' or system == 'mac10.9':
- builder_tag = system.replace('.', '_')
+ # We have both 10.8 and 10.9 bots, functionality is the same.
+ if system == 'mac10.8' or system == 'mac10.9':
system = 'mac'
if (system == 'windows' and platform.system() != 'Windows') or (
« no previous file with comments | « tests/corelib/corelib.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698