ci: Set ErrorActionPreference=Stop in powershell scripts

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1621>
This commit is contained in:
Sebastian Dröge 2024-12-23 10:55:12 +02:00 committed by Backport Bot
parent 1d0acf7ab8
commit 6a52c35a07
6 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,5 @@
$env:ErrorActionPreference='Stop'
# List of all the crates we want to build
# We need to do this manually to avoid trying
# to build egl,wayland,x11 etc, which can't

View file

@ -1,3 +1,5 @@
$env:ErrorActionPreference='Stop'
# Copied from mesa, big kudos
#
# https://gitlab.freedesktop.org/mesa/mesa/-/blob/master/.gitlab-ci/windows/mesa_container.ps1

View file

@ -1,3 +1,5 @@
$env:ErrorActionPreference='Stop'
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
rustup --version

View file

@ -1,3 +1,5 @@
$env:ErrorActionPreference='Stop'
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
# Download gstreamer and all its subprojects

View file

@ -1,3 +1,5 @@
$env:ErrorActionPreference='Stop'
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
# Download gstreamer and all its subprojects

View file

@ -1,3 +1,5 @@
$env:ErrorActionPreference='Stop'
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
$rustup_url = 'https://win.rustup.rs/x86_64'