Switch mingw links (#12561)

This commit is contained in:
genotrance
2019-10-31 05:13:32 -05:00
committed by Andreas Rumpf
parent 79a262d6e9
commit 0c7b6c9c15
5 changed files with 6 additions and 6 deletions

View File

@@ -4,8 +4,8 @@ environment:
DLLS_URL: https://nim-lang.org/download/dlls.zip
DLLS_ARCHIVE: dlls.zip
MINGW_DIR: mingw64
MINGW_URL: https://nim-lang.org/download/mingw64-6.3.0.7z
MINGW_ARCHIVE: mingw64-6.3.0.7z
MINGW_URL: https://nim-lang.org/download/mingw64.7z
MINGW_ARCHIVE: mingw64.7z
matrix:
- NIM_TEST_PACKAGES: false

View File

@@ -97,7 +97,7 @@ steps:
- bash: |
mkdir dist
curl -L https://nim-lang.org/download/mingw64-6.3.0.7z -o dist/mingw64.7z
curl -L https://nim-lang.org/download/mingw64.7z -o dist/mingw64.7z
curl -L https://nim-lang.org/download/dlls.zip -o dist/dlls.zip
7z x dist/mingw64.7z -odist
7z x dist/dlls.zip -obin

View File

@@ -45,7 +45,7 @@ proc download(pkg: string; c: Controls) {.async.} =
proc apply(a: Actions; c: Controls) {.async.} =
if a.mingw:
await download("mingw" & arch & "-6.3.0", c)
await download("mingw" & arch, c)
if a.aporia:
await download("aporia-0.4.0", c)

View File

@@ -5,7 +5,7 @@ import strutils, os, osproc, streams, browsers
const
arch = $(sizeof(int)*8)
mingw = "mingw$1-6.3.0.7z" % arch
mingw = "mingw$1.7z" % arch
url = r"https://nim-lang.org/download/" & mingw
var

View File

@@ -427,5 +427,5 @@ when isMainModule:
else:
echo "Status [" & $status & "] message = [" & $message & "]"
downloadToFile("https://nim-lang.org/download/mingw64-6.3.0.7z",
downloadToFile("https://nim-lang.org/download/mingw64.7z",
"test.zip", {optUseCache}, progress)