File tree 4 files changed +7
-4
lines changed
4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,10 @@ jobs:
210
210
name : Test hls-hlint-plugin test suite
211
211
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"
212
212
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
+
213
217
- if : matrix.test && matrix.ghc != '9.2.1'
214
218
name : Test hls-alternate-number-format-plugin test suite
215
219
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:
55
55
+ignore-plugins-ghc-bounds
56
56
-alternateNumberFormat
57
57
-brittany
58
- -callhierarchy
59
58
-class
60
59
-eval
61
60
-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.
6
6
7
7
| GHC version | Last supporting HLS version | Deprecation status |
8
8
| ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- |
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 ) | |
10
10
| 9.0.1 | [ current] ( https://github.com/haskell/haskell-language-server/releases/latest ) ([ partial] ( https://github.com/haskell/haskell-language-server/issues/297 ) ) | |
11
11
| 8.10.7 | [ current] ( https://github.com/haskell/haskell-language-server/releases/latest ) | |
12
12
| 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
211
211
cpp-options : -Dclass
212
212
213
213
common callHierarchy
214
- if flag(callHierarchy) && (impl(ghc < 9.2.1 ) || flag(ignore-plugins-ghc-bounds))
214
+ if flag(callHierarchy)
215
215
build-depends : hls-call-hierarchy-plugin ^>= 1.0.0.0
216
216
cpp-options : -DcallHierarchy
217
217
@@ -256,7 +256,7 @@ common hlint
256
256
cpp-options : -Dhlint
257
257
258
258
common moduleName
259
- if flag(moduleName)
259
+ if flag(moduleName) && (impl(ghc < 9.2.1 ) || flag(ignore-plugins-ghc-bounds))
260
260
build-depends : hls-module-name-plugin ^>= 1.0.0.0
261
261
cpp-options : -DmoduleName
262
262
You can’t perform that action at this time.
0 commit comments