Merge branch 'ghc-8.8.2' of https://github.com/haskell/haskell-ide-engine into ghc-8.8.2

This commit is contained in:
Luke Lau 2020-01-27 11:08:38 +00:00
commit efeeb49ac5
4 changed files with 8 additions and 2 deletions

View File

@ -7,6 +7,8 @@ jobs:
matrix:
stack-def:
YAML_FILE: stack.yaml
stack-8.8.2:
YAML_FILE: stack-8.8.2.yaml
stack-8.8.1:
YAML_FILE: stack-8.8.1.yaml
stack-8.6.5:

View File

@ -7,6 +7,8 @@ jobs:
matrix:
stack-def:
YAML_FILE: stack.yaml
stack-8.8.2:
YAML_FILE: stack-8.8.2.yaml
stack-8.8.1:
YAML_FILE: stack-8.8.1.yaml
stack-8.6.5:

View File

@ -7,6 +7,8 @@ jobs:
matrix:
stack-def:
YAML_FILE: stack.yaml
# ghc versions 8.8.1 and 8.8.2 are not usable in windows
# due to https://gitlab.haskell.org/ghc/ghc/issues/17575
stack-8.6.5:
YAML_FILE: stack-8.6.5.yaml
stack-8.6.4:

View File

@ -104,8 +104,8 @@ getHieVersions = do
& mapMaybe
(T.stripPrefix stackYamlPrefix >=> T.stripSuffix stackYamlSuffix)
& map T.unpack
-- the following line excludes `8.6.3` and `8.8.1` on windows systems
& filter (\p -> not (isWindowsSystem && p `elem` ["8.6.3","8.8.1"]))
-- the following line excludes `8.6.3`, `8.8.1` and `8.8.2` on windows systems
& filter (\p -> not (isWindowsSystem && p `elem` ["8.6.3", "8.8.1", "8.8.2"]))
& sort
return hieVersions