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

Unified Diff: projects.py

Issue 24243015: Pointing to a skia master domain name and reading list of required build steps from the master. (Closed) Base URL: https://src.chromium.org/chrome/trunk/tools/commit-queue/
Patch Set: Created 7 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: projects.py
===================================================================
--- projects.py (revision 224367)
+++ projects.py (working copy)
@@ -500,21 +500,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')))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698