gst-plugins-rs/ci/run_windows_tests.ps1
Matthew Waters 1e964233c6 ci: run tests with RUST_BACKTRACE=1
Produces backtraces which would allow some initial debugging on hard to
find issues.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1606>
2024-06-06 14:02:55 +00:00

50 lines
1.1 KiB
PowerShell

$env:ErrorActionPreference='Stop'
[string[]] $exclude_crates = @(
"--exclude",
"gst-plugin-csound",
"--exclude",
"gst-plugin-webp"
)
[string[]] $features_matrix = @(
"--no-default-features",
"",
"--all-features"
)
function Run-Tests {
param (
$Features
)
$local_exclude = $exclude_crates;
# In this case the plugin will pull x11/wayland features
# which will fail to build on windows.
if (($Features -eq '--all-features') -or ($Features -eq '')) {
$local_exclude += @("--exclude", "gst-plugin-gtk4")
}
Write-Host "Features: $Features"
Write-Host "Exclude string: $local_exclude"
cargo build --color=always --workspace $local_exclude --all-targets $Features
if (!$?) {
Write-Host "Build failed"
Exit 1
}
$env:G_DEBUG="fatal_warnings"
$env:RUST_BACKTRACE="1"
cargo test --no-fail-fast --color=always --workspace $local_exclude --all-targets $Features
if (!$?) {
Write-Host "Tests failed"
Exit 1
}
}
foreach($feature in $features_matrix) {
Run-Tests -Features $feature
}