mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-01-02 21:38:42 +00:00
ci: Set ErrorActionPreference=Stop in powershell scripts
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1620>
This commit is contained in:
parent
41f9d994de
commit
f6948d31cd
6 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
$env:ErrorActionPreference='Stop'
|
||||
|
||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
|
||||
|
||||
rustup --version
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
$env:ErrorActionPreference='Stop'
|
||||
|
||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
|
||||
|
||||
# Download gstreamer and all its subprojects
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
$env:ErrorActionPreference='Stop'
|
||||
|
||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
|
||||
|
||||
# Download gstreamer and all its subprojects
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
$env:ErrorActionPreference='Stop'
|
||||
|
||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
|
||||
|
||||
$rustup_url = 'https://win.rustup.rs/x86_64'
|
||||
|
|
Loading…
Reference in a new issue