From 1e304c960f51ee2c28a264f1eebfa7abf6c0fefc Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Sat, 21 Jun 2025 03:08:11 +0900 Subject: [PATCH] ci: Skip gstreamer-d3d12 test on Linux Part-of: --- ci/run-cargo-test.sh | 5 +++++ ci/run-clippy.sh | 5 +++++ ci/run-sys-cargo-test.sh | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/ci/run-cargo-test.sh b/ci/run-cargo-test.sh index 3cc827c13..d34dda4d2 100755 --- a/ci/run-cargo-test.sh +++ b/ci/run-cargo-test.sh @@ -12,6 +12,11 @@ CARGO_NEXTEST_FLAGS="--profile=ci --no-tests=pass" parent="${CI_PROJECT_DIR:-$(pwd)}" for crate in gstreamer* gstreamer-gl/{egl,wayland,x11}; do + if [[ "$crate" == gstreamer-d3d12* ]]; then + echo "Skipping $crate" + continue + fi + if [ -e "$crate/Cargo.toml" ]; then if [ -n "$ALL_FEATURES" ]; then FEATURES="--all-features" diff --git a/ci/run-clippy.sh b/ci/run-clippy.sh index a6354292c..20cfc37b5 100755 --- a/ci/run-clippy.sh +++ b/ci/run-clippy.sh @@ -26,6 +26,11 @@ get_features() { } for crate in gstreamer* gstreamer-gl/{egl,wayland,x11}; do + if [[ "$crate" == gstreamer-d3d12* ]]; then + echo "Skipping $crate" + continue + fi + if [ -e "$crate/Cargo.toml" ]; then FEATURES=$(get_features "$crate") diff --git a/ci/run-sys-cargo-test.sh b/ci/run-sys-cargo-test.sh index 9cfda2748..5d844e5e5 100755 --- a/ci/run-sys-cargo-test.sh +++ b/ci/run-sys-cargo-test.sh @@ -12,6 +12,11 @@ CARGO_NEXTEST_FLAGS="--profile=ci --no-tests=pass" parent="${CI_PROJECT_DIR:-$(pwd)}" for crate in gstreamer*/sys gstreamer-gl/*/sys; do + if [[ "$crate" == gstreamer-d3d12* ]]; then + echo "Skipping $crate" + continue + fi + if [ -e "$crate/Cargo.toml" ]; then echo "Building $crate with --all-features" cargo build $CARGO_FLAGS --locked --manifest-path "$crate/Cargo.toml" --all-features