Skip to content

Commit 420c6c5

Browse files
authored
Merge pull request #619 from jneira/win-build-8.10.2
Add build to ghc-8.10.2 and windows
2 parents e63da6b + eed310c commit 420c6c5

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,15 @@ jobs:
2727
ghc: '8.8.3' # fails due to segfault
2828
- os: windows-latest
2929
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
3033

3134
steps:
3235
- uses: actions/checkout@v2
3336
with:
3437
submodules: true
35-
- uses: actions/setup-haskell@v1.1.3
38+
- uses: actions/setup-haskell@v1
3639
with:
3740
ghc-version: ${{ matrix.ghc }}
3841
cabal-version: '3.2'

.github/workflows/test.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,20 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
ghc: ['8.10.2.2', '8.10.2', '8.10.1', '8.8.4', '8.8.3', '8.8.2', '8.6.5', '8.6.4']
10+
ghc: ['8.10.2', '8.10.1', '8.8.4', '8.8.3', '8.8.2', '8.6.5', '8.6.4']
1111
os: [ubuntu-latest, macOS-latest, windows-latest]
1212
exclude:
13-
- os: ubuntu-latest
14-
ghc: '8.10.2.2' # only valid for windows and chocolatey
15-
- os: macOS-latest
16-
ghc: '8.10.2.2' # only valid for windows and chocolatey:
1713
- os: windows-latest
18-
ghc: '8.10.2' # unusable due to https://gitlab.haskell.org/ghc/ghc/-/issues/18550
14+
ghc: '8.10.2' # broken due to https://gitlab.haskell.org/ghc/ghc/-/issues/18550
1915
- os: windows-latest
2016
ghc: '8.8.4' # also fails due to segfault :(
2117
- os: windows-latest
2218
ghc: '8.8.3' # fails due to segfault
2319
- os: windows-latest
2420
ghc: '8.8.2' # fails due to error with Cabal
21+
include:
22+
- os: windows-latest
23+
ghc: '8.10.2.2' # only available for windows and choco
2524

2625
steps:
2726
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)