mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-11 22:08:54 +00:00
Switch mingw links (#12561)
This commit is contained in:
committed by
Andreas Rumpf
parent
79a262d6e9
commit
0c7b6c9c15
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user