ci: Build crates with v1_22

This commit is contained in:
Sebastian Dröge 2022-03-15 15:06:34 +02:00
parent 12f1483d43
commit 1a11fda103

View file

@ -222,9 +222,9 @@ plugins-update-nightly:
get_features() { get_features() {
crate=$1 crate=$1
if [ "$crate" = "gstreamer" ]; then if [ "$crate" = "gstreamer" ]; then
echo "--features=ser_de,v1_20" echo "--features=ser_de,v1_22"
else else
echo "--features=v1_20" echo "--features=v1_22"
fi fi
} }
for crate in gstreamer* gstreamer-gl/{egl,wayland,x11}; do for crate in gstreamer* gstreamer-gl/{egl,wayland,x11}; do
@ -293,7 +293,7 @@ test nightly all-features:
- | - |
get_features() { get_features() {
module=${1%%/sys} module=${1%%/sys}
echo "--features=v1_20" echo "--features=v1_22"
} }
# First build and test all the crates with their relevant features # First build and test all the crates with their relevant features
# Keep features in sync with below # Keep features in sync with below
@ -369,9 +369,9 @@ clippy:
get_features() { get_features() {
crate=$1 crate=$1
if [ "$crate" = "gstreamer" ]; then if [ "$crate" = "gstreamer" ]; then
echo "--features=ser_de,v1_20" echo "--features=ser_de,v1_22"
else else
echo "--features=v1_20" echo "--features=v1_22"
fi fi
} }
for crate in gstreamer* gstreamer-gl/{egl,wayland,x11}; do for crate in gstreamer* gstreamer-gl/{egl,wayland,x11}; do