Skip to content

Commit

Permalink
Drop support for GHC 8.8 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
arybczak authored Feb 29, 2024
1 parent 3a1ce54 commit c21cc23
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 24 deletions.
27 changes: 11 additions & 16 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.17.20231010
# version: 0.18.1
#
# REGENDATA ("0.17.20231010",["github","--config=cabal.haskell-ci","cabal.project"])
# REGENDATA ("0.18.1",["github","--config=cabal.haskell-ci","cabal.project"])
#
name: Haskell-CI
on:
Expand Down Expand Up @@ -38,19 +38,19 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.8.1
- compiler: ghc-9.8.2
compilerKind: ghc
compilerVersion: 9.8.1
compilerVersion: 9.8.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.6.3
- compiler: ghc-9.6.4
compilerKind: ghc
compilerVersion: 9.6.3
compilerVersion: 9.6.4
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.4.7
- compiler: ghc-9.4.8
compilerKind: ghc
compilerVersion: 9.4.7
compilerVersion: 9.4.8
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.2.8
Expand All @@ -68,22 +68,17 @@ jobs:
compilerVersion: 8.10.7
setup-method: ghcup
allow-failure: false
- compiler: ghc-8.8.4
compilerKind: ghc
compilerVersion: 8.8.4
setup-method: ghcup
allow-failure: false
fail-fast: false
steps:
- name: apt
run: |
apt-get update
apt-get install -y --no-install-recommends gnupg ca-certificates dirmngr curl git software-properties-common libtinfo5
mkdir -p "$HOME/.ghcup/bin"
curl -sL https://downloads.haskell.org/ghcup/0.1.19.5/x86_64-linux-ghcup-0.1.19.5 > "$HOME/.ghcup/bin/ghcup"
curl -sL https://downloads.haskell.org/ghcup/0.1.20.0/x86_64-linux-ghcup-0.1.20.0 > "$HOME/.ghcup/bin/ghcup"
chmod a+x "$HOME/.ghcup/bin/ghcup"
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false)
"$HOME/.ghcup/bin/ghcup" install cabal 3.10.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
"$HOME/.ghcup/bin/ghcup" install cabal 3.10.2.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
env:
HCKIND: ${{ matrix.compilerKind }}
HCNAME: ${{ matrix.compiler }}
Expand All @@ -101,7 +96,7 @@ jobs:
echo "HC=$HC" >> "$GITHUB_ENV"
echo "HCPKG=$HCPKG" >> "$GITHUB_ENV"
echo "HADDOCK=$HADDOCK" >> "$GITHUB_ENV"
echo "CABAL=$HOME/.ghcup/bin/cabal-3.10.1.0 -vnormal+nowrap" >> "$GITHUB_ENV"
echo "CABAL=$HOME/.ghcup/bin/cabal-3.10.2.0 -vnormal+nowrap" >> "$GITHUB_ENV"
HCNUMVER=$(${HC} --numeric-version|perl -ne '/^(\d+)\.(\d+)\.(\d+)(\.(\d+))?$/; print(10000 * $1 + 100 * $2 + ($3 == 0 ? $5 != 1 : $3))')
echo "HCNUMVER=$HCNUMVER" >> "$GITHUB_ENV"
echo "ARG_TESTS=--enable-tests" >> "$GITHUB_ENV"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# hpqtypes-1.12.0.0 (????-??-??)
* Drop support for GHC 8.8.
* Attach `CallStack` to `DBException`.

# hpqtypes-1.11.1.2 (2023-11-08)
Expand Down
14 changes: 6 additions & 8 deletions hpqtypes.cabal
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
cabal-version: 3.0
build-type: Simple
name: hpqtypes
version: 1.12.0.0
synopsis: Haskell bindings to libpqtypes
Expand All @@ -13,16 +15,13 @@ description: Efficient and easy-to-use bindings to (slightly modified)
directory.

homepage: https://github.com/scrive/hpqtypes
license: BSD3
license: BSD-3-Clause
license-file: LICENSE
author: Scrive AB
maintainer: Andrzej Rybczak <andrzej@rybczak.net>
copyright: Scrive AB
category: Database
build-type: Simple
cabal-version: 1.24
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.7 || ==9.6.3
|| ==9.8.1
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.4, 9.8.2 }

extra-source-files: README.md
, CHANGELOG.md
Expand Down Expand Up @@ -93,7 +92,7 @@ library
, Database.PostgreSQL.PQTypes.Internal.C.Interface
, Database.PostgreSQL.PQTypes.Internal.C.Get

build-depends: base >= 4.13 && < 5
build-depends: base >= 4.14 && < 5
, text >= 0.11
, aeson >= 1.0
, async >= 2.1.1.1
Expand All @@ -119,7 +118,6 @@ library

ghc-options: -Wall

build-tools: hsc2hs
include-dirs: libpqtypes/src

cc-options: -DHAVE_CONFIG_H -D_GNU_SOURCE -D_REENTRANT -std=gnu99 -fsigned-char -fno-strict-aliasing -Wall -Wextra
Expand Down Expand Up @@ -180,7 +178,7 @@ test-suite hpqtypes-tests
Test.Aeson.Compat
Test.QuickCheck.Arbitrary.Instances
build-depends: hpqtypes
, base >= 4.13 && < 5
, base >= 4.14 && < 5
, HUnit >= 1.2
, QuickCheck >= 2.7
, aeson >= 0.6.2.0
Expand Down

0 comments on commit c21cc23

Please sign in to comment.