summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2023-01-10 21:49:57 -0500
committerBen Gamari <ben@smart-cactus.org>2023-02-01 20:13:24 -0500
commitde1d5250f8af033f96315fc61bf6d69ade871c01 (patch)
tree03c1b9fe78d775607ba5181857fa4621b2f173a2
parentbca6f1a026629d92eae197745178c7fb6c7b337f (diff)
downloadhaskell-wip/bump-win32-tarballs.tar.gz
Bump Windows toolchainwip/bump-win32-tarballs
Updates to LLVM 14, hopefully fixing #21964.
-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 4485a8fd58..98a40cc90e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,7 +6,7 @@ variables:
# Sequential version number of all cached things.
# Bump to invalidate GitLab CI cache.
- CACHE_REV: 9
+ CACHE_REV: 10
# 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 1ee0580051..4b11c36116 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.7'
+TARBALL_VERSION = '0.8'
BASE_URL = "https://downloads.haskell.org/ghc/mingw/{}".format(TARBALL_VERSION)
DEST = Path('ghc-tarballs/mingw-w64')
ARCHS = ['x86_64', 'sources']