summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2020-08-28 19:30:41 +0300
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-09-14 17:36:54 +0000
commit800c46e67c3c024165caa9a623f20a34ff2032a9 (patch)
tree7da853f047b4aefce036a1b6351bb6f66fcdb9dc
parent0f50f3901e02a84dfaf1bc8f1d3b6603697b8939 (diff)
docker/windows: tweak installation of git
Make sure we set autocrlf to false, which is needed by cerbero. Additionally remove useless for the container integrations with the shell. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/333>
-rw-r--r--docker/windows/install_choco.ps13
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/windows/install_choco.ps1 b/docker/windows/install_choco.ps1
index f1a7c38..9fb9d13 100644
--- a/docker/windows/install_choco.ps1
+++ b/docker/windows/install_choco.ps1
@@ -2,4 +2,5 @@ Write-Host "Installing Choco"
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Write-Host "Installing Choco packages"
choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System'
-choco install -y python3 git git-lfs 7zip \ No newline at end of file
+choco install -y git --params "/NoAutoCrlf /NoCredentialManager /NoShellHereIntegration /NoGuiHereIntegration /NoShellIntegration"
+choco install -y python3 git-lfs 7zip