summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2020-10-06 21:42:49 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-10-09 08:52:43 -0400
commite5c7c9c8578de1248826c21ebd08e475d094a552 (patch)
treef09780448e1d1a0a214272d772c2badaff8866fd
parentbfdccac6acce84e15292a454d12f4e0d87ef6f10 (diff)
downloadhaskell-e5c7c9c8578de1248826c21ebd08e475d094a552.tar.gz
Bump win32-tarballs version to 0.3
This should fix #18774.
-rw-r--r--.gitlab-ci.yml2
-rwxr-xr-xmk/get-win32-tarballs.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index df2608a9d0..9cebc625d0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,7 +6,7 @@ variables:
# Sequential version number capturing the versions of all tools fetched by
# .gitlab/ci.sh.
- WINDOWS_TOOLCHAIN_VERSION: 2
+ WINDOWS_TOOLCHAIN_VERSION: 3
# Disable shallow clones; they break our linting rules
GIT_DEPTH: 0
diff --git a/mk/get-win32-tarballs.py b/mk/get-win32-tarballs.py
index 6686119204..025e661b22 100755
--- a/mk/get-win32-tarballs.py
+++ b/mk/get-win32-tarballs.py
@@ -8,7 +8,7 @@ import argparse
import sys
from sys import stderr
-TARBALL_VERSION = '0.2'
+TARBALL_VERSION = '0.3'
BASE_URL = "https://downloads.haskell.org/ghc/mingw/{}".format(TARBALL_VERSION)
DEST = Path('ghc-tarballs/mingw-w64')
ARCHS = ['i686', 'x86_64', 'sources']