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

Commit 6238a49

Browse files
committed
Install hie-8.6.5 to avoid segfaults with ghc-8.8.3
1 parent 1fdd50c commit 6238a49

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.azure/windows-installhs-stack.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ jobs:
66
variables:
77
YAML_FILE: install/shake.yaml
88
STACK_ROOT: "C:\\sr"
9+
#
10+
GHC_VERSION: "8.6.5"
911
steps:
1012
- task: Cache@2
1113
inputs:
@@ -46,7 +48,8 @@ jobs:
4648
- bash: |
4749
source .azure/windows-stack.bashrc
4850
# Some executions fails with spurious errors installing executables
49-
stack install.hs latest || stack install.hs latest
51+
# We can't install the latest target cause it is ghc-8.8.3 and throws segfaults
52+
stack install.hs hie-${GHC_VERSION} || stack install.hs hie-${GHC_VERSION}
5053
displayName: Run latest target of `install.hs`
5154
- bash: |
5255
mkdir -p .azure-cache

0 commit comments

Comments
 (0)