Skip to content

Commit

Permalink
Allow GHC from 8.10 up to 9.10, update GHA matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisdral committed Jun 14, 2024
1 parent fdb1a51 commit 4a49890
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["9.2.8", "9.4.8", "9.6.4", "9.8.2"]
cabal: ["3.10.2.1"]
ghc: ["8.10.7", "9.2.8", "9.4.8", "9.6.5", "9.8.2", "9.10.1"]
cabal: ["3.10.3.0"]
os: [ubuntu-latest] # ubuntu-latest = ubuntu-22.04
liburing: ["liburing-2.5"]
liburing: ["liburing-2.6"]
include:
- ghc: "9.6.4"
cabal: "3.10.2.1"
cabal: "3.10.3.0"
os: ubuntu-20.04
liburing: "liburing-2.1"
liburing: "liburing-2.0"
- ghc: "9.6.4"
cabal: "3.10.2.1"
cabal: "3.10.3.0"
os: ubuntu-20.04
liburing: "liburing-2.5"
liburing: "liburing-2.6"
- ghc: "9.6.4"
cabal: "3.10.2.1"
cabal: "3.10.3.0"
os: ubuntu-22.04
liburing: "liburing-2.1"
liburing: "liburing-2.0"
- ghc: "9.6.4"
cabal: "3.10.2.1"
cabal: "3.10.3.0"
os: ubuntu-22.04
liburing: "system"

Expand Down
8 changes: 4 additions & 4 deletions blockio-uring.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ maintainer: [email protected]
copyright: (c) Well-Typed LLP 2022 - 2024
category: System
build-type: Simple
tested-with: GHC ==9.2 || ==9.4 || ==9.6 || ==9.8
tested-with: GHC ==8.10 || ==9.2 || ==9.4 || ==9.6 || ==9.8 || ==9.10
extra-doc-files:
CHANGELOG.md
README.md
Expand All @@ -40,7 +40,7 @@ library
System.IO.BlockIO.URingFFI

build-depends:
base >=4.12 && <4.20
, base >=4.14 && <4.21
, primitive ^>=0.9
, vector ^>=0.13

Expand All @@ -61,8 +61,8 @@ benchmark bench
, primitive
, random
, time
, vector
, unix
, vector

pkgconfig-depends: liburing
other-modules:
Expand All @@ -82,8 +82,8 @@ test-suite test
, base
, primitive
, tasty
, vector
, tasty-hunit
, vector

pkgconfig-depends: liburing
other-modules:
Expand Down

0 comments on commit 4a49890

Please sign in to comment.