mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
docker/windows: work around a python ssl issue
Python fails to validate github.com SSL certificate, unless we first run a dummy download to force refreshing Windows' CA database. See: https://bugs.python.org/issue36137 Adapted from patches by Xavier Claessens!
This commit is contained in:
parent
0320050e06
commit
23f303eb94
1 changed files with 5 additions and 0 deletions
|
@ -3,6 +3,11 @@
|
|||
git config --global user.email "gst-build@gstreamer.net"
|
||||
git config --global user.name "Gstbuild Runner"
|
||||
|
||||
# FIXME: Python fails to validate github.com SSL certificate, unless we first
|
||||
# run a dummy download to force refreshing Windows' CA database.
|
||||
# See: https://bugs.python.org/issue36137
|
||||
(New-Object System.Net.WebClient).DownloadString("https://github.com") >$null
|
||||
|
||||
# Download gst-build and all its subprojects
|
||||
git clone https://gitlab.freedesktop.org/gstreamer/gst-build.git C:\gst-build
|
||||
|
||||
|
|
Loading…
Reference in a new issue