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
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.8.2', '9.10.1']
ghc: ['8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10', '9.12']
os: ['ubuntu-latest'] # Disabled macos until https://github.com/haskellari/postgresql-libpq/issues/71 is figured out
name: Haskell GHC ${{ matrix.ghc }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Haskell
uses: haskell/actions/setup@v2
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
Expand Down
4 changes: 2 additions & 2 deletions gargoyle-postgresql-connect/gargoyle-postgresql-connect.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ synopsis: Connect to gargoyle-managed postgresql instances
extra-source-files: ChangeLog.md
category: System
description: A convenience utility for connecting to a postgresql instance managed by gargoyle.
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1 || ==9.12.2

library
exposed-modules: Gargoyle.PostgreSQL.Connect
ghc-options: -Wall
ghc-prof-options: -fprof-auto-exported
build-depends:
base >=4.12 && <4.21
base >=4.12 && <4.22
, bytestring >=0.10 && <0.13
, directory >=1.3 && <1.4
, gargoyle >=0.1.1.0 && < 0.2
Expand Down
4 changes: 2 additions & 2 deletions gargoyle-postgresql-nix/gargoyle-postgresql-nix.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ extra-source-files:
README.md
ChangeLog.md

tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1 || ==9.12.2

library
exposed-modules: Gargoyle.PostgreSQL.Nix
other-modules: Paths_gargoyle_postgresql_nix
ghc-options: -Wall
ghc-prof-options: -fprof-auto-exported
build-depends:
base >=4.12 && <4.21
base >=4.12 && <4.22
, bytestring >=0.10 && <0.13
, gargoyle >=0.1 && <0.2
, gargoyle-postgresql >=0.2 && <0.3
Expand Down
4 changes: 2 additions & 2 deletions gargoyle-postgresql/gargoyle-postgresql.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ description:
> withDb dbPath a = withGargoyle defaultPostgres dbPath $ \dbUri -> a =<< connectPostgreSQL dbUri

extra-source-files: ChangeLog.md
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1 || ==9.12.2

-- Requires postgres to be in the environment to run
flag enable-psql-test
Expand All @@ -45,7 +45,7 @@ library
ghc-options: -Wall
ghc-prof-options: -fprof-auto-exported
build-depends:
base >=4.12 && <4.21
base >=4.12 && <4.22
, bytestring >=0.10 && <0.13
, directory >=1.3 && <1.4
, gargoyle >=0.1.1.0 && < 0.2
Expand Down
4 changes: 2 additions & 2 deletions gargoyle/gargoyle.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ extra-source-files:
ChangeLog.md
README.md

tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || == 9.10.1
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1 || ==9.12.2

library
exposed-modules: Gargoyle
ghc-options: -Wall
ghc-prof-options: -fprof-auto-exported
build-depends:
base >=4.12.0 && <4.21
base >=4.12.0 && <4.22
, directory >=1.3.3 && <1.4
, filelock >=0.1.1 && <0.2
, filepath >=1.4.2 && <1.6
Expand Down