Minor cleanup to gitlab-ci.yml

Don't special-case the features of gstreamer-base and gstreamer-video
anymore, they have the same as most other crates now.
This commit is contained in:
Sebastian Dröge 2019-09-17 11:05:57 +03:00
parent c19c9b1d8a
commit 0cfe6c58a6

View file

@ -52,8 +52,6 @@ stages:
if [ -n "$ALL_FEATURES" ]; then
if [ $crate = "gstreamer" ]; then
FEATURES=futures,ser_de,v1_16
elif [ $crate = "gstreamer-base" -o $crate = "gstreamer-video" ]; then
FEATURES=v1_16
elif [ $crate = "gstreamer-gl" ]; then
FEATURES=egl,x11,wayland,v1_16
else
@ -132,8 +130,6 @@ clippy:
for crate in gstreamer*; do
if [ $crate = "gstreamer" ]; then
FEATURES=futures,ser_de,v1_16
elif [ $crate = "gstreamer-base" -o $crate = "gstreamer-video" ]; then
FEATURES=v1_16
elif [ $crate = "gstreamer-gl" ]; then
FEATURES=egl,x11,wayland,v1_16
else