From 3d1ca7860012ff64b54a233d9cb36665e77e1659 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Tue, 4 May 2021 12:23:17 +0100 Subject: [PATCH] ci: use GitHub for storing mingw-w64 build dependency --- azure-pipelines/setup-mingw.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/setup-mingw.sh b/azure-pipelines/setup-mingw.sh index d500da058..f5a882d2b 100755 --- a/azure-pipelines/setup-mingw.sh +++ b/azure-pipelines/setup-mingw.sh @@ -9,9 +9,9 @@ BUILD_TEMP=$(cygpath $BUILD_TEMP) case "$ARCH" in amd64) - MINGW_URI="https://bintray.com/libgit2/build-dependencies/download_file?file_path=mingw-w64-x86_64-8.1.0-release-win32-seh-rt_v6-rev0.zip";; + MINGW_URI="https://github.com/libgit2/ci-dependencies/releases/download/2021-05-04/mingw-x86_64-8.1.0-release-win32-sjlj-rt_v6-rev0.zip";; x86) - MINGW_URI="https://bintray.com/libgit2/build-dependencies/download_file?file_path=mingw-w64-i686-8.1.0-release-win32-sjlj-rt_v6-rev0.zip";; + MINGW_URI="https://github.com/libgit2/ci-dependencies/releases/download/2021-05-04/mingw-i686-8.1.0-release-win32-sjlj-rt_v6-rev0.zip";; esac if [ -z "$MINGW_URI" ]; then