Skip to content

Commit f560fbb

Browse files
committed
Remove GHC 8.10.2
1 parent aa686b3 commit f560fbb

File tree

5 files changed

+3
-99
lines changed

5 files changed

+3
-99
lines changed

.circleci/config.yml

-6
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,6 @@ jobs:
8888
- STACK_FILE: "stack-8.8.4.yaml"
8989
<<: *defaults
9090

91-
ghc-8.10.2:
92-
environment:
93-
- STACK_FILE: "stack-8.10.2.yaml"
94-
<<: *defaults
95-
9691
ghc-8.10.3:
9792
environment:
9893
- STACK_FILE: "stack-8.10.3.yaml"
@@ -123,7 +118,6 @@ workflows:
123118
- ghc-8.8.2
124119
- ghc-8.8.3
125120
- ghc-8.8.4
126-
- ghc-8.10.2
127121
- ghc-8.10.3
128122
- ghc-8.10.4
129123
- ghc-8.10.5

.github/workflows/build.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,15 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
ghc: ['8.10.5', '8.10.4', '8.10.3', '8.10.2', '8.8.4', '8.8.3', '8.8.2', '8.6.5', '8.6.4']
19+
ghc: ['8.10.5', '8.10.4', '8.10.3', '8.8.4', '8.8.3', '8.8.2', '8.6.5', '8.6.4']
2020
os: [ubuntu-18.04, macOS-latest, windows-latest]
2121
exclude:
22-
- os: windows-latest
23-
ghc: '8.10.2' # broken due to https://gitlab.haskell.org/ghc/ghc/-/issues/18550
2422
- os: windows-latest
2523
ghc: '8.8.4' # also fails due to segfault :(
2624
- os: windows-latest
2725
ghc: '8.8.3' # fails due to segfault
2826
- os: windows-latest
2927
ghc: '8.8.2' # fails due to error with Cabal
30-
include:
31-
- os: windows-latest
32-
ghc: '8.10.2.2' # only available for windows and choco
3328

3429
steps:
3530
- uses: actions/checkout@v2
@@ -54,7 +49,6 @@ jobs:
5449
GHC_VER: ${{ matrix.ghc }}
5550
run: |
5651
echo "EXE_EXT=.exe" >> $GITHUB_ENV
57-
GHC_VER=$(echo $GHC_VER | sed 's/8.10.2.2/8.10.2/g')
5852
echo "GHC_VERSION=$GHC_VER" >> $GITHUB_ENV
5953
6054
- name: Set some linux specific things

.github/workflows/test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
fail-fast: true
3535
matrix:
36-
ghc: ["8.10.5", "8.10.4", "8.10.3", "8.10.2", "8.8.4", "8.8.3", "8.8.2", "8.6.5", "8.6.4"]
36+
ghc: ["8.10.5", "8.10.4", "8.10.3", "8.8.4", "8.8.3", "8.8.2", "8.6.5", "8.6.4"]
3737
os: [ubuntu-latest, macOS-latest]
3838
include:
3939
# only test supported ghc major versions
@@ -53,8 +53,6 @@ jobs:
5353
ghc: '8.6.5'
5454
test: true
5555
# only build rest of supported ghc versions for windows
56-
- os: windows-latest
57-
ghc: '8.10.2.2'
5856
- os: windows-latest
5957
ghc: '8.10.3'
6058
# This build get stuck frequently

haskell-language-server.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ copyright: The Haskell IDE Team
1414
license: Apache-2.0
1515
license-file: LICENSE
1616
build-type: Simple
17-
tested-with: GHC == 8.6.4 || == 8.6.5 || == 8.8.2 || == 8.8.3 || == 8.8.4 || == 8.10.2 || == 8.10.3 || == 8.10.4 || == 8.10.5
17+
tested-with: GHC == 8.6.4 || == 8.6.5 || == 8.8.2 || == 8.8.3 || == 8.8.4 || == 8.10.3 || == 8.10.4 || == 8.10.5
1818
extra-source-files:
1919
README.md
2020
ChangeLog.md

stack-8.10.2.yaml

-82
This file was deleted.

0 commit comments

Comments
 (0)