aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2018-11-06 20:26:28 -0500
committerGitHub <noreply@github.com>2018-11-06 20:26:28 -0500
commit62d726369f816b0050fd73cc0610077ce7c8662d (patch)
tree747176c51b308a0bb30e271f85e88bb38b9438b5
parent8667cb327da62c067bca6b70acccd959ed832a81 (diff)
parent0ac730a38d0c977a9dbcc392d792501d5dd56801 (diff)
downloadservo-62d726369f816b0050fd73cc0610077ce7c8662d.tar.gz
servo-62d726369f816b0050fd73cc0610077ce7c8662d.zip
Auto merge of #22125 - Darkspirit:https_dl_buildbot_timings, r=jdm
Download buildbot metadata via https https://build.servo.org/json works. https://www.hardenize.com/report/build.servo.org#www_tls Likely ECDHE-RSA-AES128-GCM-SHA256 will be used by any modern client to download the file. ----- https://docs.python.org/2/library/urllib.html > For Python versions earlier than 2.7.9, urllib does not attempt to validate the server certificates of HTTPS URIs. Use at your own risk! python3 is used to run the script: https://github.com/servo/servo/blob/535ea9674f1c80cb911a10c9333194b6c0f919ad/etc/ci/buildbot_steps.yml#L170 ----- https://docs.python.org/3.1/howto/urllib2.html > Currently urllib.request does not support fetching of https locations through a proxy. However, this can be enabled by extending urllib.request as shown in the recipe [7]. I don't think this will be downloaded through a proxy. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22125) <!-- Reviewable:end -->
-rw-r--r--etc/ci/performance/download_buildbot_timings.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/ci/performance/download_buildbot_timings.py b/etc/ci/performance/download_buildbot_timings.py
index 72255d3a7f2..f83d47562df 100644
--- a/etc/ci/performance/download_buildbot_timings.py
+++ b/etc/ci/performance/download_buildbot_timings.py
@@ -24,14 +24,14 @@ def main():
)
parser.add_argument("--index-url",
type=str,
- default='http://build.servo.org/json',
+ default='https://build.servo.org/json',
help="the URL to get the JSON index data index from. "
- "Default: http://build.servo.org/json")
+ "Default: https://build.servo.org/json")
parser.add_argument("--build-url",
type=str,
- default='http://build.servo.org/json/builders/{}/builds/{}',
+ default='https://build.servo.org/json/builders/{}/builds/{}',
help="the URL to get the JSON build data from. "
- "Default: http://build.servo.org/json/builders/{}/builds/{}")
+ "Default: https://build.servo.org/json/builders/{}/builds/{}")
parser.add_argument("--cache-dir",
type=str,
default=default_cache_dir,