diff options
author | bors-servo <servo-ops@mozilla.com> | 2020-11-11 18:23:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-11 18:23:34 -0500 |
commit | 553ff20468862fde74cc307ebc733e86c9bfbe80 (patch) | |
tree | 4a87881dfeae852c610e564a27f2848ef27cf55c /python/servo/build_commands.py | |
parent | 6d1472d2b245b6a9f4d62acf3ce8ddcb1c19ebbb (diff) | |
parent | 68b565757593edbe2982ce46100d6db73e508625 (diff) | |
download | servo-553ff20468862fde74cc307ebc733e86c9bfbe80.tar.gz servo-553ff20468862fde74cc307ebc733e86c9bfbe80.zip |
Auto merge of #27750 - servo:godet, r=SimonSapin
Use new S3 buckets
CC https://github.com/servo/project/issues/25
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 9c2e7429463..7095cfbcad4 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -510,7 +510,7 @@ class MachCommands(CommandBase): # Follow these instructions to build and deploy new binaries # https://github.com/servo/libgstreamer_android_gen#build print("Downloading GStreamer dependencies") - gst_url = "https://servo-deps.s3.amazonaws.com/gstreamer/%s" % gst_lib_zip + gst_url = "https://servo-deps-2.s3.amazonaws.com/gstreamer/%s" % gst_lib_zip print(gst_url) urllib.request.urlretrieve(gst_url, gst_lib_zip) zip_ref = zipfile.ZipFile(gst_lib_zip, "r") @@ -605,7 +605,7 @@ class MachCommands(CommandBase): # GStreamer configuration env.setdefault("GSTREAMER_DIR", path.join(target_path, target, "native", "gstreamer-1.16.0")) - env.setdefault("GSTREAMER_URL", "https://servo-deps.s3.amazonaws.com/gstreamer/gstreamer-magicleap-1.16.0-20190823-104505.tgz") + env.setdefault("GSTREAMER_URL", "https://servo-deps-2.s3.amazonaws.com/gstreamer/gstreamer-magicleap-1.16.0-20190823-104505.tgz") env.setdefault("PKG_CONFIG_PATH", path.join(env["GSTREAMER_DIR"], "system", "lib64", "pkgconfig")) # Override the linker set in .cargo/config |