From: Jordan Petridis Date: Thu, 9 Sep 2021 01:02:57 +0000 (+0300) Subject: docker/windows: remove workaround to fetch github's cert X-Git-Tag: 1.19.3~497^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d94c24b39004ee5b25d910b967a46681d7365d0f;p=platform%2Fupstream%2Fgstreamer.git docker/windows: remove workaround to fetch github's cert looks like it might not be needed anymore Part-of: --- diff --git a/docker/windows/install_gst.ps1 b/docker/windows/install_gst.ps1 index f000259..6105f36 100644 --- a/docker/windows/install_gst.ps1 +++ b/docker/windows/install_gst.ps1 @@ -1,10 +1,5 @@ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; -# 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 -b $env:DEFAULT_BRANCH https://gitlab.freedesktop.org/gstreamer/gst-build.git C:\gst-build # FIXME: need 1.19+ for cairo subproject :/ diff --git a/docker/windows/prepare_gst_env.ps1 b/docker/windows/prepare_gst_env.ps1 index ebde9f6..652fe2b 100644 --- a/docker/windows/prepare_gst_env.ps1 +++ b/docker/windows/prepare_gst_env.ps1 @@ -1,10 +1,5 @@ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; -# 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 -b $env:DEFAULT_BRANCH https://gitlab.freedesktop.org/gstreamer/gst-build.git C:\gst-build if (!$?) { diff --git a/gitlab/ci_template.yml b/gitlab/ci_template.yml index 4e5c808..ac0e287 100644 --- a/gitlab/ci_template.yml +++ b/gitlab/ci_template.yml @@ -27,7 +27,7 @@ variables: MANIFEST_TAG: '2020-10-22.0' TEST_MANIFEST_TAG: '2020-10-22.0' INDENT_TAG: '2020-10-22.0' - WINDOWS_TAG: "2021-09-08.0" + WINDOWS_TAG: "2021-09-09.0" GST_UPSTREAM_REPO: 'gstreamer/gst-ci'