CI: test all features on v1_20

This commit is contained in:
Marijn Suijten 2021-05-26 23:36:17 +02:00
parent 110bfce7e6
commit b8d50a342f

View file

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