Skip to content

Commit 5357d6e

Browse files
committed
support for ghc-8.10.7
1 parent d5b46b5 commit 5357d6e

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

.circleci/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ jobs:
9191
- STACK_FILE: "stack-8.10.6.yaml"
9292
<<: *defaults
9393

94+
ghc-8.10.7:
95+
environment:
96+
- STACK_FILE: "stack-8.10.7.yaml"
97+
<<: *defaults
98+
9499
ghc-9.0.1:
95100
environment:
96101
- STACK_FILE: "stack-9.0.1.yaml"
@@ -115,5 +120,6 @@ workflows:
115120
- ghc-8.10.4
116121
- ghc-8.10.5
117122
- ghc-8.10.6
123+
- ghc-8.10.7
118124
- ghc-9.0.1
119125
- ghc-default

.github/workflows/test.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
strategy:
3434
fail-fast: true
3535
matrix:
36-
ghc: ["9.0.1", '8.10.6', "8.10.5", "8.10.4", "8.10.3", "8.10.2", "8.8.4", "8.8.3", "8.6.5", "8.6.4"]
36+
ghc: ["9.0.1", '8.10.7', '8.10.6', "8.10.5", "8.10.4", "8.10.3", "8.10.2", "8.8.4", "8.8.3", "8.6.5", "8.6.4"]
3737
os: [ubuntu-latest, macOS-latest]
3838
include:
3939
# only test supported ghc major versions
4040
- os: ubuntu-latest
4141
ghc: '9.0.1'
4242
test: true
4343
- os: ubuntu-latest
44-
ghc: '8.10.6'
44+
ghc: '8.10.7'
4545
test: true
4646
- os: ubuntu-latest
4747
ghc: '8.8.4'
@@ -53,12 +53,16 @@ jobs:
5353
ghc: '9.0.1'
5454
test: true
5555
- os: windows-latest
56-
ghc: '8.10.6'
56+
ghc: '8.10.7'
5757
test: true
5858
- os: windows-latest
5959
ghc: '8.6.5'
6060
test: true
6161
# only build rest of supported ghc versions for windows
62+
- os: windows-latest
63+
ghc: '8.10.7'
64+
- os: windows-latest
65+
ghc: '8.10.6'
6266
- os: windows-latest
6367
ghc: '8.10.5'
6468
- os: windows-latest

ghcide/ghcide.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description:
1313
A library for building Haskell IDE's on top of the GHC API.
1414
homepage: https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme
1515
bug-reports: https://github.com/haskell/haskell-language-server/issues
16-
tested-with: GHC == 8.6.4 || == 8.6.5 || == 8.8.3 || == 8.8.4 || == 8.10.2 || == 8.10.3 || == 8.10.4 || == 8.10.5 || == 8.10.6 || == 9.0.1
16+
tested-with: GHC == 8.6.4 || == 8.6.5 || == 8.8.3 || == 8.8.4 || == 8.10.2 || == 8.10.3 || == 8.10.4 || == 8.10.5 || == 8.10.6 || == 8.10.7 || == 9.0.1
1717
extra-source-files: README.md CHANGELOG.md
1818
test/data/**/*.project
1919
test/data/**/*.cabal

stack-8.10.7.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: nightly-2021-06-14
1+
resolver: lts-18.7
22
compiler: ghc-8.10.7
33

44
packages:

0 commit comments

Comments
 (0)