diff options
author | Mukilan Thiyagarajan <me@mukilan.in> | 2023-04-20 13:14:58 +0530 |
---|---|---|
committer | Mukilan Thiyagarajan <me@mukilan.in> | 2023-04-20 15:37:39 +0530 |
commit | 6e7cb9bffaa55f0148b835ba37592341bd0bf874 (patch) | |
tree | 2a65eac4ef769f64c708c700e3a7a553d3a01ccf /python/servo/bootstrap.py | |
parent | 9acb9cc5cf21d14709355a3c75af7202e9301bd5 (diff) | |
download | servo-6e7cb9bffaa55f0148b835ba37592341bd0bf874.tar.gz servo-6e7cb9bffaa55f0148b835ba37592341bd0bf874.zip |
Download prebuilt dependencies from Github instead of S3
After moving nightly builds to GitHub releases,
the major contributor to AWS cost is now the S3 data
transfer charges.
This PR only addresses the data transfer costs incurred
due to the download of gstreamer dependency in the
linux and the Windows dependencies (llvm, cmake, moztools,
openssl etc) for MSVC builds. Android dependencies and
UWP/Hololens dependencies will continue to be served
from S3. These can be moved to GH as well in a future PR.
Signed-off-by: Mukilan Thiyagarajan <me@mukilan.in>
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r-- | python/servo/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py index 1acef6e3d72..acf7c78acbb 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -128,7 +128,7 @@ def windows_msvc(context, force=False): '''Bootstrapper for MSVC building on Windows.''' deps_dir = os.path.join(context.sharedir, "msvc-dependencies") - deps_url = "https://servo-deps-2.s3.amazonaws.com/msvc-deps/" + deps_url = "https://github.com/servo/servo-build-deps/releases/download/msvc-deps/" def version(package): return packages.WINDOWS_MSVC[package] |