docker/windows: Update msys2 installer to 2021-02-15 version.
authorBiswapriyo Nath <nathbappai@gmail.com>
Sat, 13 Feb 2021 15:21:35 +0000 (20:51 +0530)
committerJordan Petridis <jordan@centricular.com>
Tue, 16 Feb 2021 13:57:39 +0000 (15:57 +0200)
This fixes the PGP key installation issue.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/396>

docker/windows/build_image.ps1
docker/windows/install_toolchain.ps1

index 4e19de3..8494dfd 100644 (file)
@@ -1,5 +1,5 @@
 $env:DEFAULT_BRANCH='master'
-$env:VERSION='v13'
+$env:VERSION='v17'
 $env:tag ="registry.freedesktop.org/gstreamer/gst-ci/amd64/windows:$env:VERSION-$env:DEFAULT_BRANCH"
 echo "Building $env:tag"
 docker build --build-arg DEFAULT_BRANCH=$env:DEFAULT_BRANCH -f Dockerfile -t $env:tag .
index cd6f147..a29330b 100644 (file)
@@ -1,7 +1,7 @@
 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
 
 $msvc_2017_url = 'https://aka.ms/vs/15/release/vs_buildtools.exe'
-$msys2_url = 'https://github.com/msys2/msys2-installer/releases/download/2020-05-22/msys2-base-x86_64-20200522.tar.xz'
+$msys2_url = 'https://github.com/msys2/msys2-installer/releases/download/2021-02-15/msys2-base-x86_64-20210215.tar.xz'
 $msys_mingw_get_url = 'https://dotsrc.dl.osdn.net/osdn/mingw/68260/mingw-get-0.6.3-mingw32-pre-20170905-1-bin.tar.xz'
 
 Write-Host "Installing VisualStudio"