diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2019-12-20 13:35:55 -0600 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2019-12-20 13:35:55 -0600 |
commit | b5943f5ab36b3ef718a7908a1b624f077b9ab79c (patch) | |
tree | 823b58b30e34b496b89c2661c7e862304d3b42e4 | |
parent | 14e0c6ad0562717d496c9d898a870a4338a4b935 (diff) | |
download | servo-b5943f5ab36b3ef718a7908a1b624f077b9ab79c.tar.gz servo-b5943f5ab36b3ef718a7908a1b624f077b9ab79c.zip |
Disable the gstreamer plugin build for windows
-rw-r--r-- | etc/taskcluster/decision_task.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 7c9b521dac8..a3d70653794 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -491,9 +491,9 @@ def windows_unit(cached=True): "mach smoketest --angle", "mach package --dev", "mach build --dev --libsimpleservo", - # We're getting link errors on windows, due to the x11 feature being - # enabled on gstreamer-gl. https://github.com/servo/media/pull/304/ - "mach build --dev --media-stack=dummy -p servo-gst-plugin", + # The GStreamer plugin currently doesn't support Windows + # https://github.com/servo/servo/issues/25353 + # "mach build --dev -p servo-gst-plugin", ) .with_artifacts("repo/target/debug/msi/Servo.exe", |