File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,10 @@ jobs:
210210 name : Test hls-hlint-plugin test suite
211211 run : cabal test hls-hlint-plugin --test-options="$TEST_OPTS" || cabal test hls-hlint-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-hlint-plugin --test-options="$TEST_OPTS"
212212
213+ - if : matrix.test && matrix.ghc != '9.2.1'
214+ name : Test hls-module-name-plugin test suite
215+ run : cabal test hls-module-name-plugin --test-options="$TEST_OPTS" || cabal test hls-module-name-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-module-name-plugin --test-options="$TEST_OPTS"
216+
213217 - if : matrix.test && matrix.ghc != '9.2.1'
214218 name : Test hls-alternate-number-format-plugin test suite
215219 run : cabal test hls-alternate-number-format-plugin --test-options="$TEST_OPTS" || cabal test hls-alternate-number-format-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-alternate-number-format-plugin --test-options="$TEST_OPTS"
Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ constraints:
5555 +ignore-plugins-ghc-bounds
5656 -alternateNumberFormat
5757 -brittany
58- -callhierarchy
5958 -class
6059 -eval
6160 -haddockComments
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ The current support for different GHC versions is given in the following table.
66
77| GHC version | Last supporting HLS version | Deprecation status |
88| ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- |
9- | 9.2.0 | [ not supported ] ( https://github.com/haskell/haskell-language-server/issues/2179 ) yet | |
9+ | 9.2.0 | incoming [ partial ] ( https://github.com/haskell/haskell-language-server/issues/2179 ) | |
1010| 9.0.1 | [ current] ( https://github.com/haskell/haskell-language-server/releases/latest ) ([ partial] ( https://github.com/haskell/haskell-language-server/issues/297 ) ) | |
1111| 8.10.7 | [ current] ( https://github.com/haskell/haskell-language-server/releases/latest ) | |
1212| 8.10.6 | [ current] ( https://github.com/haskell/haskell-language-server/releases/latest ) | will be deprecated after LTS and HLS full support for ghc-9.0 |
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ common class
211211 cpp-options : -Dclass
212212
213213common callHierarchy
214- if flag(callHierarchy) && (impl(ghc < 9.2.1 ) || flag(ignore-plugins-ghc-bounds))
214+ if flag(callHierarchy)
215215 build-depends : hls-call-hierarchy-plugin ^>= 1.0.0.0
216216 cpp-options : -DcallHierarchy
217217
@@ -256,7 +256,7 @@ common hlint
256256 cpp-options : -Dhlint
257257
258258common moduleName
259- if flag(moduleName)
259+ if flag(moduleName) && (impl(ghc < 9.2.1 ) || flag(ignore-plugins-ghc-bounds))
260260 build-depends : hls-module-name-plugin ^>= 1.0.0.0
261261 cpp-options : -DmoduleName
262262
You can’t perform that action at this time.
0 commit comments