Chromium Code Reviews| Index: tools/bots/compiler.py |
| diff --git a/tools/bots/compiler.py b/tools/bots/compiler.py |
| index 246e87fa7cef8b70b954661df8e01c55ccb93cba..3a94d301605781d1c3fdecd844fa42fff8d02254 100644 |
| --- a/tools/bots/compiler.py |
| +++ b/tools/bots/compiler.py |
| @@ -26,7 +26,7 @@ DART2JS_BUILDER = ( |
| r'dart2js-(linux|mac|windows)(-(jsshell))?-(debug|release)(-(checked|host-checked))?(-(host-checked))?(-(minified))?(-(x64))?(-(batch))?-?(\d*)-?(\d*)') |
| DART2JS_FULL_BUILDER = r'full-(linux|mac|win7|win8)(-(ie10|ie11))?(-checked)?(-minified)?-(\d+)-(\d+)' |
| WEB_BUILDER = ( |
| - r'dart2js-(ie9|ie10|ie11|ff|safari|chrome|chromeOnAndroid|safarimobilesim|opera|drt)-(win7|win8|mac10\.8|mac10\.7|linux)(-(all|html))?(-(csp))?(-(\d+)-(\d+))?') |
| + r'dart2js-(ie9|ie10|ie11|ff|safari|chrome|chromeOnAndroid|safarimobilesim|opera|drt)-(win7|win8|mac10\.7|mac10\.8|mac10\.9|linux)(-(all|html))?(-(csp))?(-(\d+)-(\d+))?') |
|
ricow1
2014/10/29 12:30:36
delete 10.7?
|
| IE_VERSIONS = ['ie10', 'ie11'] |
| @@ -138,7 +138,7 @@ def GetBuildInfo(builder_name, is_buildbot): |
| system = 'windows' |
| # We have both 10.8 and 10.7 bots, functionality is the same. |
| - if system == 'mac10.8' or system == 'mac10.7': |
| + if system == 'mac10.7' or system == 'mac10.8' or system == 'mac10.9': |
| builder_tag = system.replace('.', '_') |
| system = 'mac' |