@@ -60,33 +60,20 @@ jobs:
60
60
# **don't forget**
61
61
# to update the ghc versions in 'caching.yml'.
62
62
matrix :
63
- ghc : [ "9.4.3"
64
- , "9.4.2"
63
+ ghc : [ "9.4.4"
65
64
, "9.2.5"
66
- , "9.2.4"
67
- , "9.2.3"
68
65
, "9.0.2"
69
66
, "8.10.7"
70
67
]
71
68
os : [ "ubuntu-latest"
72
69
, "macOS-latest"
73
70
, "windows-latest"
74
71
]
75
- # don't build these versions
76
- # they are broken for good reasons, e.g. compiler is bugged
77
- # on that platform.
78
- exclude :
79
- # Exclude until https://github.com/haskell/actions/issues/129
80
- # is resolved.
81
- - os : windows-latest
82
- ghc : ' 9.4.3' # Excluded because github action cannot install it
83
- - os : windows-latest
84
- ghc : ' 9.2.5'
85
72
# Mark which GHC versions on which platform we want to test.
86
73
include :
87
74
# only test supported ghc major versions
88
75
- os : ubuntu-latest
89
- ghc : ' 9.4.3 '
76
+ ghc : ' 9.4.4 '
90
77
test : true
91
78
- os : ubuntu-latest
92
79
ghc : ' 9.2.5'
@@ -98,12 +85,10 @@ jobs:
98
85
ghc : ' 8.10.7'
99
86
test : true
100
87
- os : windows-latest
101
- ghc : ' 9.4.2 '
88
+ ghc : ' 9.4.4 '
102
89
test : true
103
- # Test on 9.2.4 until https://github.com/haskell/actions/issues/129
104
- # is resolved. Then switch to 9.2.5
105
90
- os : windows-latest
106
- ghc : ' 9.2.4 '
91
+ ghc : ' 9.2.5 '
107
92
test : true
108
93
- os : windows-latest
109
94
ghc : ' 9.0.2'
@@ -181,11 +166,11 @@ jobs:
181
166
name : Test hls-pragmas-plugin
182
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"
183
168
184
- - if : matrix.test && matrix.ghc != '9.4.2' && matrix.ghc != '9.4.3 '
169
+ - if : matrix.test && matrix.ghc != '9.4.4 '
185
170
name : Test hls-eval-plugin
186
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"
187
172
188
- - 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 '
189
174
name : Test hls-haddock-comments-plugin
190
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"
191
176
@@ -205,7 +190,7 @@ jobs:
205
190
name : Test hls-fourmolu-plugin
206
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"
207
192
208
- - 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 '
209
194
name : Test hls-tactics-plugin test suite
210
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"
211
196
@@ -229,7 +214,7 @@ jobs:
229
214
name : Test hls-hlint-plugin test suite
230
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"
231
216
232
- - 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 '
233
218
name : Test hls-stan-plugin test suite
234
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"
235
220
0 commit comments