File tree 6 files changed +2
-13
lines changed
hls-graph/src/Development/IDE/Graph/Internal
6 files changed +2
-13
lines changed Original file line number Diff line number Diff line change 48
48
, "9.0.2"
49
49
, "8.10.7"
50
50
, "8.8.4"
51
- , "8.6.5"
52
51
]
53
52
os : [ "ubuntu-latest"
54
53
]
Original file line number Diff line number Diff line change 64
64
, "9.0.2"
65
65
, "8.10.7"
66
66
, "8.8.4"
67
- , "8.6.5"
68
67
]
69
68
os : [ "ubuntu-latest"
70
69
, "macOS-latest"
86
85
- os : ubuntu-latest
87
86
ghc : ' 8.8.4'
88
87
test : true
89
- - os : ubuntu-latest
90
- ghc : ' 8.6.5'
91
- test : true
92
88
- os : windows-latest
93
89
ghc : ' 9.4.2'
94
90
test : true
101
97
- os : windows-latest
102
98
ghc : ' 8.10.7'
103
99
test : true
104
- - os : windows-latest
105
- ghc : ' 8.6.5'
106
- test : true
107
100
# only build rest of supported ghc versions for windows
108
101
- os : windows-latest
109
102
ghc : ' 8.8.4'
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ RUN sudo install-packages build-essential curl libffi-dev libffi7 libgmp-dev lib
7
7
echo 'export PATH=$HOME/.cabal/bin:$HOME/.local/bin:$PATH' >> $HOME/.bashrc && \
8
8
. /home/gitpod/.ghcup/env && \
9
9
# Install all verions of GHC that HLS supports. Putting GHC into Docker image makes workspace start much faster.
10
- ghcup install ghc 8.6.5 && \
11
10
ghcup install ghc 8.8.4 && \
12
11
ghcup install ghc 8.10.7 && \
13
12
ghcup install ghc 9.0.2 && \
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ description:
13
13
A library for building Haskell IDE's on top of the GHC API.
14
14
homepage : https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme
15
15
bug-reports : https://github.com/haskell/haskell-language-server/issues
16
- tested-with : GHC == 8.6.5 || == 8. 8.4 || == 8.10.7 || == 9.0.2 || == 9.2.3 || == 9.2.4
16
+ tested-with : GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.3 || == 9.2.4
17
17
extra-source-files : README.md CHANGELOG.md
18
18
test/data/**/*.project
19
19
test/data/**/*.cabal
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ copyright: The Haskell IDE Team
14
14
license : Apache-2.0
15
15
license-file : LICENSE
16
16
build-type : Simple
17
- tested-with : GHC == 8.6.5 || == 8. 8.4 || == 8.10.7 || == 9.0.2 || == 9.2.3 || == 9.2.4
17
+ tested-with : GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.3 || == 9.2.4
18
18
extra-source-files :
19
19
README.md
20
20
ChangeLog.md
Original file line number Diff line number Diff line change @@ -13,9 +13,7 @@ module Development.IDE.Graph.Internal.Types where
13
13
import Control.Applicative
14
14
import Control.Monad.Catch
15
15
#if __GLASGOW_HASKELL__ < 808
16
- -- Needed in GHC 8.6.5
17
16
import Control.Concurrent.STM.Stats (TVar , atomically )
18
- import Control.Monad.Fail
19
17
#else
20
18
import GHC.Conc (TVar , atomically )
21
19
#endif
You can’t perform that action at this time.
0 commit comments