From 0cfe6c58a6f8e3b1bea29bf38cecc6ff6e175ac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 17 Sep 2019 11:05:57 +0300 Subject: [PATCH] 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. --- .gitlab-ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c63dd95fd..2ba852a0e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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