Skip to content

Commit ac49c4d

Browse files
committed
Drop 9.4.3 and 9.2.4 for all platforms
1 parent af75d08 commit ac49c4d

File tree

3 files changed

+6
-28
lines changed

3 files changed

+6
-28
lines changed

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
example: ['cabal', 'lsp-types']
111111

112112
steps:
113-
- uses: haskell/actions/setup@v2
113+
- uses: haskell/actions/setup@v2.3.3
114114
with:
115115
ghc-version : ${{ matrix.ghc }}
116116
cabal-version: ${{ matrix.cabal }}

.github/workflows/caching.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,22 +84,13 @@ jobs:
8484
# to the list of GHC versions specified in 'test.yml'
8585
ghc: [ "9.4.4"
8686
, "9.2.5"
87-
, "9.2.4"
8887
, "9.0.2"
8988
, "8.10.7"
9089
]
9190
os: [ "ubuntu-latest"
9291
, "macOS-latest"
9392
, "windows-latest"
9493
]
95-
exclude:
96-
# Exclude until https://github.com/haskell/actions/issues/129
97-
# is resolved.
98-
- os: windows-latest
99-
ghc: '9.4.3' # Excluded because github action cannot install it
100-
- os: windows-latest
101-
ghc: '9.2.5'
102-
10394
steps:
10495
- uses: actions/checkout@v3
10596

.github/workflows/test.yml

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -62,24 +62,13 @@ jobs:
6262
matrix:
6363
ghc: [ "9.4.4"
6464
, "9.2.5"
65-
, "9.2.4"
6665
, "9.0.2"
6766
, "8.10.7"
6867
]
6968
os: [ "ubuntu-latest"
7069
, "macOS-latest"
7170
, "windows-latest"
7271
]
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'
8372
# Mark which GHC versions on which platform we want to test.
8473
include:
8574
# only test supported ghc major versions
@@ -98,10 +87,8 @@ jobs:
9887
- os: windows-latest
9988
ghc: '9.4.4'
10089
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
10390
- os: windows-latest
104-
ghc: '9.2.4'
91+
ghc: '9.2.5'
10592
test: true
10693
- os: windows-latest
10794
ghc: '9.0.2'
@@ -179,11 +166,11 @@ jobs:
179166
name: Test hls-pragmas-plugin
180167
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"
181168

182-
- if: matrix.test && matrix.ghc != '9.4.2' && matrix.ghc != '9.4.3'
169+
- if: matrix.test && matrix.ghc != '9.4.4'
183170
name: Test hls-eval-plugin
184171
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"
185172

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'
187174
name: Test hls-haddock-comments-plugin
188175
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"
189176

@@ -203,7 +190,7 @@ jobs:
203190
name: Test hls-fourmolu-plugin
204191
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"
205192

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'
207194
name: Test hls-tactics-plugin test suite
208195
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"
209196

@@ -227,7 +214,7 @@ jobs:
227214
name: Test hls-hlint-plugin test suite
228215
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"
229216

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'
231218
name: Test hls-stan-plugin test suite
232219
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"
233220

0 commit comments

Comments
 (0)