@@ -62,24 +62,13 @@ jobs:
62
62
matrix :
63
63
ghc : [ "9.4.4"
64
64
, "9.2.5"
65
- , "9.2.4"
66
65
, "9.0.2"
67
66
, "8.10.7"
68
67
]
69
68
os : [ "ubuntu-latest"
70
69
, "macOS-latest"
71
70
, "windows-latest"
72
71
]
73
- # don't build these versions
74
- # they are broken for good reasons, e.g. compiler is bugged
75
- # on that platform.
76
- exclude :
77
- # Exclude until https://github.com/haskell/actions/issues/129
78
- # is resolved.
79
- - os : windows-latest
80
- ghc : ' 9.4.3' # Excluded because github action cannot install it
81
- - os : windows-latest
82
- ghc : ' 9.2.5'
83
72
# Mark which GHC versions on which platform we want to test.
84
73
include :
85
74
# only test supported ghc major versions
98
87
- os : windows-latest
99
88
ghc : ' 9.4.4'
100
89
test : true
101
- # Test on 9.2.4 until https://github.com/haskell/actions/issues/129
102
- # is resolved. Then switch to 9.2.5
103
90
- os : windows-latest
104
- ghc : ' 9.2.4 '
91
+ ghc : ' 9.2.5 '
105
92
test : true
106
93
- os : windows-latest
107
94
ghc : ' 9.0.2'
@@ -179,11 +166,11 @@ jobs:
179
166
name : Test hls-pragmas-plugin
180
167
run : cabal test hls-pragmas-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-pragmas-plugin --test-options="$TEST_OPTS"
181
168
182
- - if : matrix.test && matrix.ghc != '9.4.2' && matrix.ghc != '9.4.3 '
169
+ - if : matrix.test && matrix.ghc != '9.4.4 '
183
170
name : Test hls-eval-plugin
184
171
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"
185
172
186
- - if : matrix.test && matrix.ghc != '9.2.4' && matrix.ghc != '9.2. 5' && matrix.ghc != '9.4.2' && matrix.ghc != '9.4.3 '
173
+ - if : matrix.test && matrix.ghc != '9.2.5' && matrix.ghc != '9.4.4 '
187
174
name : Test hls-haddock-comments-plugin
188
175
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"
189
176
@@ -203,7 +190,7 @@ jobs:
203
190
name : Test hls-fourmolu-plugin
204
191
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"
205
192
206
- - if : matrix.test && matrix.ghc != '9.2.4' && matrix.ghc != '9.2. 5' && matrix.ghc != '9.4.2' && matrix.ghc != '9.4.3 '
193
+ - if : matrix.test && matrix.ghc != '9.2.5' && matrix.ghc != '9.4.4 '
207
194
name : Test hls-tactics-plugin test suite
208
195
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"
209
196
@@ -227,7 +214,7 @@ jobs:
227
214
name : Test hls-hlint-plugin test suite
228
215
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"
229
216
230
- - if : matrix.test && matrix.ghc != '9.0.1' && matrix.ghc != '9.0. 2' && matrix.ghc != '9.2.4' && matrix.ghc != '9.2. 5' && matrix.ghc != '9.4.2' && matrix.ghc != '9.4.3 '
217
+ - if : matrix.test && matrix.ghc != '9.0.2' && matrix.ghc != '9.2.5' && matrix.ghc != '9.4.4 '
231
218
name : Test hls-stan-plugin test suite
232
219
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"
233
220
0 commit comments