Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit efeeb49

Browse files
committed
Merge branch 'ghc-8.8.2' of https://github.com/haskell/haskell-ide-engine into ghc-8.8.2
2 parents de18b28 + fe8034e commit efeeb49

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.azure/linux-stack.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
matrix:
88
stack-def:
99
YAML_FILE: stack.yaml
10+
stack-8.8.2:
11+
YAML_FILE: stack-8.8.2.yaml
1012
stack-8.8.1:
1113
YAML_FILE: stack-8.8.1.yaml
1214
stack-8.6.5:

.azure/macos-stack.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
matrix:
88
stack-def:
99
YAML_FILE: stack.yaml
10+
stack-8.8.2:
11+
YAML_FILE: stack-8.8.2.yaml
1012
stack-8.8.1:
1113
YAML_FILE: stack-8.8.1.yaml
1214
stack-8.6.5:

.azure/windows-stack.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
matrix:
88
stack-def:
99
YAML_FILE: stack.yaml
10+
# ghc versions 8.8.1 and 8.8.2 are not usable in windows
11+
# due to https://gitlab.haskell.org/ghc/ghc/issues/17575
1012
stack-8.6.5:
1113
YAML_FILE: stack-8.6.5.yaml
1214
stack-8.6.4:

install/src/Env.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ getHieVersions = do
104104
& mapMaybe
105105
(T.stripPrefix stackYamlPrefix >=> T.stripSuffix stackYamlSuffix)
106106
& map T.unpack
107-
-- the following line excludes `8.6.3` and `8.8.1` on windows systems
108-
& filter (\p -> not (isWindowsSystem && p `elem` ["8.6.3","8.8.1"]))
107+
-- the following line excludes `8.6.3`, `8.8.1` and `8.8.2` on windows systems
108+
& filter (\p -> not (isWindowsSystem && p `elem` ["8.6.3", "8.8.1", "8.8.2"]))
109109
& sort
110110
return hieVersions
111111

0 commit comments

Comments
 (0)