Skip to content

Commit 143c145

Browse files
committed
Initial change to ghc 9.2.7
1 parent 1ebb619 commit 143c145

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

.github/workflows/bench.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
matrix:
4949
ghc:
5050
- '8.10.7'
51-
- '9.2.5'
51+
- '9.2.7'
5252
os:
5353
- ubuntu-latest
5454

@@ -107,7 +107,7 @@ jobs:
107107
strategy:
108108
fail-fast: false
109109
matrix:
110-
ghc: ['8.10.7', '9.2.5']
110+
ghc: ['8.10.7', '9.2.7']
111111
os: [ubuntu-latest]
112112
cabal: ['3.6']
113113
example: ['cabal', 'lsp-types']

.github/workflows/flags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
run: cabal v2-build ghcide --flags="ghc-patched-unboxed-bytecode test-exe executable bench-exe ekg"
6969

7070
# we have to clean up warnings for 9.0 and 9.2 before enable -Wall
71-
- if: matrix.ghc != '9.0.2' && matrix.ghc != '9.2.5'
71+
- if: matrix.ghc != '9.0.2' && matrix.ghc != '9.2.7'
7272
name: Build with pedantic (-WError)
7373
run: cabal v2-build --flags="pedantic"
7474

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: ./.github/actions/setup-build
2828
with:
2929
# select a stable GHC version
30-
ghc: 9.2.5
30+
ghc: 9.2.7
3131
os: ${{ runner.os }}
3232
shorten-hls: false
3333

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[ "9.4.4" , "9.2.5" , "9.0.2" , "8.10.7" ]
1+
[ "9.4.4" , "9.2.7" , "9.0.2" , "8.10.7" ]

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
name: Test hls-eval-plugin
153153
run: cabal test hls-eval-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-eval-plugin --test-options="$TEST_OPTS"
154154

155-
- if: matrix.test && matrix.ghc != '9.2.5' && matrix.ghc != '9.4.4'
155+
- if: matrix.test && matrix.ghc != '9.2.7' && matrix.ghc != '9.4.4'
156156
name: Test hls-haddock-comments-plugin
157157
run: cabal test hls-haddock-comments-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-haddock-comments-plugin --test-options="$TEST_OPTS"
158158

@@ -172,7 +172,7 @@ jobs:
172172
name: Test hls-fourmolu-plugin
173173
run: cabal test hls-fourmolu-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-fourmolu-plugin --test-options="$TEST_OPTS"
174174

175-
- if: matrix.test && matrix.ghc != '9.2.5' && matrix.ghc != '9.4.4'
175+
- if: matrix.test && matrix.ghc != '9.2.7' && matrix.ghc != '9.4.4'
176176
name: Test hls-tactics-plugin test suite
177177
run: cabal test hls-tactics-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-tactics-plugin --test-options="$TEST_OPTS"
178178

@@ -196,7 +196,7 @@ jobs:
196196
name: Test hls-hlint-plugin test suite
197197
run: 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"
198198

199-
- if: matrix.test && matrix.ghc != '9.0.2' && matrix.ghc != '9.2.5' && matrix.ghc != '9.4.4'
199+
- if: matrix.test && matrix.ghc != '9.0.2' && matrix.ghc != '9.2.7' && matrix.ghc != '9.4.4'
200200
name: Test hls-stan-plugin test suite
201201
run: cabal test hls-stan-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-stan-plugin --test-options="$TEST_OPTS"
202202

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ variables:
1717
CABAL_PROJECT: cabal.project
1818
- GHC_VERSION: 9.0.2
1919
CABAL_PROJECT: cabal.project
20-
- GHC_VERSION: 9.2.5
20+
- GHC_VERSION: 9.2.7
2121
CABAL_PROJECT: cabal.project
2222
- GHC_VERSION: 9.4.3
2323
CABAL_PROJECT: cabal.project

docs/support/ghc-version-support.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Support status (see the support policy below for more details):
2121
| 9.4.3 | [latest](https://github.com/haskell/haskell-language-server/releases/latest) | full support |
2222
| 9.4.2 | [1.8.0.0](https://github.com/haskell/haskell-language-server/releases/tag/1.8.0.0) | full support |
2323
| 9.4.1 | [1.8.0.0](https://github.com/haskell/haskell-language-server/releases/tag/1.8.0.0) | full support |
24+
| 9.2.7 | [latest](https://github.com/haskell/haskell-language-server/releases/latest) | full support |
2425
| 9.2.6 | [latest](https://github.com/haskell/haskell-language-server/releases/latest) | full support |
2526
| 9.2.5 | [latest](https://github.com/haskell/haskell-language-server/releases/latest) | full support |
2627
| 9.2.4 | [1.8.0.0](https://github.com/haskell/haskell-language-server/releases/tag/1.8.0.0) | full support |

0 commit comments

Comments
 (0)