Skip to content

Commit 15a28f3

Browse files
Auto merge of #149589 - mati865:mingw-experiments, r=<try>
bump windows-gnu C toolchain try-job: dist-i686-mingw try-job: dist-x86_64-mingw try-job: dist-x86_64-linux
2 parents 672388e + 8d2159e commit 15a28f3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/ci/scripts/install-mingw.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ IFS=$'\n\t'
66

77
source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
88

9-
MINGW_ARCHIVE_32="i686-14.1.0-release-posix-dwarf-msvcrt-rt_v12-rev0.7z"
10-
MINGW_ARCHIVE_64="x86_64-14.1.0-release-posix-seh-msvcrt-rt_v12-rev0.7z"
9+
MINGW_ARCHIVE_32="i686-14.2.0-release-posix-dwarf-msvcrt-rt_v12-rev2.7z"
10+
MINGW_ARCHIVE_64="x86_64-14.2.0-release-posix-seh-msvcrt-rt_v12-rev2.7z"
11+
TMP_URL="https://github.com/niXman/mingw-builds-binaries/releases/download/14.2.0-rt_v12-rev2/"
1112
LLVM_MINGW_ARCHIVE_AARCH64="llvm-mingw-20251104-ucrt-aarch64.zip"
1213
LLVM_MINGW_ARCHIVE_X86_64="llvm-mingw-20251104-ucrt-x86_64.zip"
1314

@@ -49,7 +50,7 @@ if isWindows && isKnownToBeMingwBuild; then
4950

5051
case "${mingw_archive}" in
5152
*.7z)
52-
curl -o mingw.7z "${MIRRORS_BASE}/${mingw_archive}"
53+
curl -Lo mingw.7z "${TMP_URL}/${mingw_archive}"
5354
7z x -y mingw.7z > /dev/null
5455
;;
5556
*.zip)

0 commit comments

Comments
 (0)