mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-10-31 22:59:14 +00:00
52c764b986
We all know that external utilities returning a non-zero exit code do not terminate a powershell script. However, most do not know (and neither did I) that it is impossible to promote error exit codes to script-terminating errors with ErrorActionPreference. Explicitly check the return codes and Exit. https://github.com/MicrosoftDocs/PowerShell-Docs/issues/1583 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1368>
71 lines
1.9 KiB
PowerShell
71 lines
1.9 KiB
PowerShell
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
|
|
|
|
# Download gstreamer and all its subprojects
|
|
git clone -b $env:DEFAULT_BRANCH --depth 1 https://gitlab.freedesktop.org/gstreamer/gstreamer.git C:\gstreamer
|
|
if (!$?) {
|
|
Write-Host "Failed to clone gstreamer"
|
|
Exit 1
|
|
}
|
|
|
|
Set-Location C:\gstreamer
|
|
|
|
# Copy the cache we already have in the image to avoid massive redownloads
|
|
Move-Item C:/subprojects/* C:\gstreamer\subprojects
|
|
|
|
# Update the subprojects cache
|
|
Write-Output "Running meson subproject reset"
|
|
meson subprojects update --reset
|
|
if (!$?) {
|
|
Write-Host "Failed to update gstreamer subprojects"
|
|
Exit 1
|
|
}
|
|
|
|
$MESON_ARGS = @(`
|
|
"--prefix=C:\gst-install", `
|
|
"-Dglib:installed_tests=false", `
|
|
"-Dlibnice:tests=disabled", `
|
|
"-Dlibnice:examples=disabled", `
|
|
"-Dffmpeg:tests=disabled", `
|
|
"-Dopenh264:tests=disabled", `
|
|
"-Dpygobject:tests=false", `
|
|
"-Dgpl=enabled", `
|
|
"-Dugly=enabled", `
|
|
"-Dbad=enabled", `
|
|
"-Dges=enabled", `
|
|
"-Drtsp_server=enabled", `
|
|
"-Ddevtools=enabled", `
|
|
"-Dsharp=disabled", `
|
|
"-Dpython=disabled", `
|
|
"-Dlibav=disabled", `
|
|
"-Dvaapi=disabled", `
|
|
"-Dgst-plugins-base:pango=enabled", `
|
|
"-Dgst-plugins-good:cairo=enabled", `
|
|
"-Dgst-plugins-good:lame=disabled"
|
|
)
|
|
|
|
$PSDefaultParameterValues['Out-File:Encoding'] = 'utf8'
|
|
echo "subproject('gtk')" >> meson.build
|
|
|
|
Write-Output "Building gstreamer"
|
|
meson setup --vsenv $MESON_ARGS _build
|
|
if (!$?) {
|
|
type "_build\meson-logs\meson-log.txt"
|
|
Write-Host "Failed to run meson setup, see log above"
|
|
Exit 1
|
|
}
|
|
|
|
Write-Output "Compiling gstreamer"
|
|
meson compile -C _build
|
|
if (!$?) {
|
|
Write-Host "Failed to run meson compile"
|
|
Exit 1
|
|
}
|
|
# meson install does a spurious rebuild sometimes that then fails
|
|
meson install --no-rebuild -C _build
|
|
if (!$?) {
|
|
Write-Host "Failed to run meson install"
|
|
Exit 1
|
|
}
|
|
|
|
cd c:\
|
|
Remove-Item -LiteralPath "C:\gstreamer" -Force -Recurse
|