From 9fca7408514a3352ac4e56cd490cea579cc16f24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 30 Apr 2024 12:32:48 +0300 Subject: [PATCH] ci: Run Linux clippy build with 1.26 APIs enabled Part-of: --- ci/run-clippy.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ci/run-clippy.sh b/ci/run-clippy.sh index 341d84d87..dff60e021 100755 --- a/ci/run-clippy.sh +++ b/ci/run-clippy.sh @@ -11,13 +11,10 @@ get_features() { crate=$1 case "$crate" in gstreamer-audio|gstreamer-editing-services|gstreamer-gl|gstreamer-pbutils|gstreamer-rtp|gstreamer-rtsp|gstreamer-video|gstreamer) - echo "--features=serde,v1_24" - ;; - gstreamer-analytics) - echo "" + echo "--features=serde,v1_26" ;; *) - echo "--features=v1_24" + echo "--features=v1_26" ;; esac }