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 62
62
, "9.0.2"
63
63
, "8.10.7"
64
64
, "8.8.4"
65
- , "8.6.5"
66
65
]
67
66
os : [ "ubuntu-latest"
68
67
, "macOS-latest"
81
80
- os : ubuntu-latest
82
81
ghc : ' 8.8.4'
83
82
test : true
84
- - os : ubuntu-latest
85
- ghc : ' 8.6.5'
86
- test : true
87
83
- os : windows-latest
88
84
ghc : ' 9.2.3'
89
85
test : true
93
89
- os : windows-latest
94
90
ghc : ' 8.10.7'
95
91
test : true
96
- - os : windows-latest
97
- ghc : ' 8.6.5'
98
- test : true
99
92
# only build rest of supported ghc versions for windows
100
93
- os : windows-latest
101
94
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.2 || == 9.2.3
16
+ tested-with : GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.2 || == 9.2.3
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.2 || == 9.2.3
17
+ tested-with : GHC == 8.8.4 || == 8.10.7 || == 9.0.2 || == 9.2.2 || == 9.2.3
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