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-07 19:29:38 -0500
commit18d1c5f92b20edd2b42ae11bc5482dcea6a5758b (patch)
tree8291fd41f97d8d904a3dc8356efde6156a5c4866
parent81873448d1c946d56f429da9d7e53ecaa55bdc71 (diff)
downloadhaskell-18d1c5f92b20edd2b42ae11bc5482dcea6a5758b.tar.gz
Bump Windows toolchain
Updates to LLVM 14, hopefully fixing #21964. (cherry picked from commit b2bb3e62275cc1d9e00a2d5ed511843192133ed5)
-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 eda6e147ed..286e9d5d88 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: 8
+ 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']