diff options
-rw-r--r-- | etc/taskcluster/decision_task.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index ea62d282021..17e12cba740 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -57,6 +57,7 @@ linux_build_env = { macos_build_env = {} windows_build_env = { "LIB": "%HOMEDRIVE%%HOMEPATH%\\gst\\gstreamer\\1.0\\x86_64\\lib;%LIB%", + "GSTREAMER_1_0_ROOT_X86_64": "%HOMEDRIVE%%HOMEPATH%\\gst\\gstreamer\\1.0\\x86_64\\", } windows_sparse_checkout = [ "/*", @@ -358,6 +359,12 @@ def windows_build_task(name): .with_rustup() .with_repacked_msi( url="https://gstreamer.freedesktop.org/data/pkg/windows/" + + "1.14.3/gstreamer-1.0-x86_64-1.14.3.msi", + sha256="f4f20c713766ed6718b914b9ae57ed993a59ffe194e6ef530c8547508b4484d8", + path="gst", + ) + .with_repacked_msi( + url="https://gstreamer.freedesktop.org/data/pkg/windows/" + "1.14.3/gstreamer-1.0-devel-x86_64-1.14.3.msi", sha256="b13ea68c1365098c66871f0acab7fd3daa2f2795b5e893fcbb5cd7253f2c08fa", path="gst", |