Update references to buildbot globals deprecated by r10856

R=borenet@google.com

Review URL: https://codereview.chromium.org/23011035

git-svn-id: http://skia.googlecode.com/svn/trunk@10860 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
epoger@google.com 2013-08-21 17:35:59 +00:00
Родитель fef422415b
Коммит c192aa4937
2 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -38,8 +38,9 @@ if GM_DIRECTORY not in sys.path:
import buildbot_globals
import gm_json
MASTER_HOST_URL = 'http://%s:%s' % (buildbot_globals.Get('master_host'),
buildbot_globals.Get('external_port'))
MASTER_HOST_URL = 'http://%s:%s' % (
buildbot_globals.Get('public_master_host'),
buildbot_globals.Get('public_external_port'))
ALL_BUILDERS = list(json.load(urllib2.urlopen(
MASTER_HOST_URL + '/json/builders')))
TEST_BUILDERS = filter(lambda x: 'Trybot' not in x and 'Test' in x,

Просмотреть файл

@ -36,8 +36,8 @@ REGEX = 'regex'
ALL_ALIASES = [ALL_BUILDERS, COMPILE_BUILDERS, CQ_BUILDERS, REGEX]
# Contact information for the build master.
SKIA_BUILD_MASTER_HOST = str(buildbot_globals.Get('master_host'))
SKIA_BUILD_MASTER_PORT = str(buildbot_globals.Get('external_port'))
SKIA_BUILD_MASTER_HOST = str(buildbot_globals.Get('public_master_host'))
SKIA_BUILD_MASTER_PORT = str(buildbot_globals.Get('public_external_port'))
# All try builders have this suffix.
TRYBOT_SUFFIX = '-Trybot'