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

Commit 6765fa6

Browse files
committed
Install hie-8.6.5 to avoid segfaults with ghc-8.8.3
1 parent d4a6a17 commit 6765fa6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.azure/windows-installhs-stack.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jobs:
66
variables:
77
YAML_FILE: install/shake.yaml
88
STACK_ROOT: "C:\\sr"
9+
GHC_VERSION: "8.6.5"
910
steps:
1011
- task: Cache@2
1112
inputs:
@@ -46,7 +47,8 @@ jobs:
4647
- bash: |
4748
source .azure/windows-stack.bashrc
4849
# Some executions fails with spurious errors installing executables
49-
stack install.hs latest || stack install.hs latest
50+
# We can't install the latest target cause it is ghc-8.8.3 and throws segfaults
51+
stack install.hs hie-${GHC_VERSION} || stack install.hs hie-${GHC_VERSION}
5052
displayName: Run latest target of `install.hs`
5153
- bash: |
5254
mkdir -p .azure-cache

0 commit comments

Comments
 (0)