mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-01-09 08:45:27 +00:00
28 lines
564 B
PowerShell
28 lines
564 B
PowerShell
$env:ErrorActionPreference='Stop'
|
|
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
|
|
|
|
rustup --version
|
|
rustc --version
|
|
cargo --version
|
|
|
|
if ("$env:RUST_VERSION" -eq "1.80.1") {
|
|
cargo install --locked cargo-c --version 0.10.5+cargo-0.93
|
|
} else {
|
|
cargo install --locked cargo-c --version 0.10.7+cargo-0.84
|
|
}
|
|
|
|
if (!$?) {
|
|
Write-Host "Failed to install cargo-c"
|
|
Exit 1
|
|
}
|
|
|
|
cargo install --locked cargo-nextest
|
|
|
|
if (!$?) {
|
|
Write-Host "Failed to install cargo-nextest"
|
|
Exit 1
|
|
}
|
|
|
|
cargo-cbuild --version
|
|
cargo nextest --version
|