2022-12-23 19:11:37 +00:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
rustc --version
|
|
|
|
cargo --version
|
|
|
|
|
|
|
|
for crate in gstreamer*/sys gstreamer-gl/*/sys; do
|
|
|
|
if [ -e "$crate/Cargo.toml" ]; then
|
2023-05-08 20:05:17 +00:00
|
|
|
echo "Building $crate with --all-features"
|
|
|
|
cargo build --locked --color=always --manifest-path "$crate/Cargo.toml" --all-features
|
2022-12-23 19:11:37 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
for crate in gstreamer/sys \
|
|
|
|
gstreamer-app/sys \
|
|
|
|
gstreamer-audio/sys \
|
|
|
|
gstreamer-base/sys \
|
|
|
|
gstreamer-check/sys \
|
|
|
|
gstreamer-controller/sys \
|
|
|
|
gstreamer-gl/sys \
|
|
|
|
gstreamer-gl/egl/sys \
|
|
|
|
gstreamer-gl/wayland/sys \
|
|
|
|
gstreamer-gl/x11/sys \
|
|
|
|
gstreamer-mpegts/sys \
|
|
|
|
gstreamer-net/sys \
|
|
|
|
gstreamer-pbutils/sys \
|
|
|
|
gstreamer-player/sys \
|
|
|
|
gstreamer-rtsp-server/sys \
|
|
|
|
gstreamer-rtsp/sys \
|
|
|
|
gstreamer-sdp/sys \
|
|
|
|
gstreamer-tag/sys \
|
|
|
|
gstreamer-video/sys \
|
|
|
|
gstreamer-webrtc/sys; do
|
2023-05-08 20:05:17 +00:00
|
|
|
echo "Testing $crate with --all-features)"
|
|
|
|
cargo test --locked --color=always --manifest-path $crate/Cargo.toml --all-features
|
2022-12-23 19:11:37 +00:00
|
|
|
done
|