gst-plugins-rs/ci/run_windows_tests.ps1
Jordan Petridis 2bf5f0bf67 ci: combine windows build jobs
Instead of having a matrix of jobs, use a single job running
all the tests like the linux jobs do.

This helps with improved cache hits as most of the deps are shared
between the builds.
2022-09-12 16:35:56 +03:00

43 lines
825 B
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
)
Write-Host "Features: $Features"
Write-Host "Exclude string: $exclude_crates"
cargo build --color=always --workspace $exclude_crates --all-targets $Features
if (!$?) {
Write-Host "Build failed"
Exit 1
}
$env:G_DEBUG="fatal_warnings"
cargo test --no-fail-fast --color=always --workspace $exclude_crates --all-targets $Features
if (!$?) {
Write-Host "Tests failed"
Exit 1
}
}
foreach($feature in $features_matrix) {
Run-Tests -Features $feature
}