Pointing to a skia master domain name and reading list of required build steps from the master.
Note: The Skia CQ will have to be resynced and restarted after this goes in.
Review URL: https://chromiumcodereview.appspot.com/24243015
git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/commit-queue@224610 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/projects.py b/projects.py
index 8750d3d..6e5f2c2 100644
--- a/projects.py
+++ b/projects.py
@@ -501,21 +501,14 @@
]
if not no_try:
- # TODO(rmistry): This should instead be a URL that does not change.
- try_server_url = 'http://173.255.115.253:10117/'
- compile_required_build_steps = [
- 'BuildBench',
- 'BuildGm',
- 'BuildEverything',
- 'BuildSkiaLib',
- 'BuildTests',
- 'BuildTools',
- ]
+ # TODO(skia-infrastructure-team): Use skia.org instead of the below when it
+ # is ready.
+ try_server_url = 'http://skiabot-master.pogerlabs.com:10117/'
# Get the required build steps and builder names from the try server.
- # compile_required_build_steps = json.load(
- # urllib2.urlopen(
- # try_server_url + 'json/cq_required_steps'))['cq_required_steps']
+ compile_required_build_steps = json.load(
+ urllib2.urlopen(
+ try_server_url + 'json/cq_required_steps'))['cq_required_steps']
builder_names = list(
json.load(urllib2.urlopen(try_server_url + 'json/cqtrybots')))