Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,29 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.12.1
- compiler: ghc-9.14.1
compilerKind: ghc
compilerVersion: 9.12.1
compilerVersion: 9.14.1
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.10.1
- compiler: ghc-9.12.2
compilerKind: ghc
compilerVersion: 9.10.1
compilerVersion: 9.12.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.10.2
compilerKind: ghc
compilerVersion: 9.10.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.8.4
compilerKind: ghc
compilerVersion: 9.8.4
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.6.6
- compiler: ghc-9.6.7
compilerKind: ghc
compilerVersion: 9.6.6
compilerVersion: 9.6.7
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.4.8
Expand Down
1 change: 1 addition & 0 deletions test-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ testbuild() {
$OPERATION --builddir="dist-newstyle/ghc-$1-time-$2" --with-compiler="ghc-$1" --constraint="time==$2"
}

testbuild 9.14.1 1.15
testbuild 9.12.2 1.15
testbuild 9.8.4 1.15

Expand Down
9 changes: 5 additions & 4 deletions time-compat.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ tested-with:
|| ==9.0.2
|| ==9.2.8
|| ==9.4.8
|| ==9.6.6
|| ==9.6.7
|| ==9.8.4
|| ==9.10.1
|| ==9.12.1
|| ==9.10.2
|| ==9.12.2
|| ==9.14.1

source-repository head
type: git
Expand All @@ -44,7 +45,7 @@ library
other-extensions: CPP
default-extensions: Trustworthy
build-depends:
base >=4.12 && <4.22
base >=4.12 && <4.23
, base-orphans >=0.9.2 && <0.10
, deepseq >=1.4.4.0 && <1.6
, hashable >=1.4.4.0 && <1.6
Expand Down