Skip to content

Commit

Permalink
bump revision and regenerate ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellwrosen committed Jul 8, 2024
1 parent 73863c8 commit 3639bb0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 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.20231219
# version: 0.19.20240608
#
# REGENDATA ("0.17.20231219",["github","hasql-listen-notify.cabal"])
# REGENDATA ("0.19.20240608",["github","hasql-listen-notify.cabal"])
#
name: Haskell-CI
on:
Expand All @@ -23,24 +23,24 @@ jobs:
timeout-minutes:
60
container:
image: buildpack-deps:bionic
image: buildpack-deps:jammy
continue-on-error: ${{ matrix.allow-failure }}
strategy:
matrix:
include:
- compiler: ghc-9.8.1
- compiler: ghc-9.10.1
compilerKind: ghc
compilerVersion: 9.8.1
compilerVersion: 9.10.1
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.6.3
- compiler: ghc-9.8.2
compilerKind: ghc
compilerVersion: 9.6.3
compilerVersion: 9.8.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.4.8
- compiler: ghc-9.6.5
compilerKind: ghc
compilerVersion: 9.4.8
compilerVersion: 9.6.5
setup-method: ghcup
allow-failure: false
fail-fast: false
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
chmod a+x $HOME/.cabal/bin/cabal-plan
cabal-plan --version
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: source
- name: initial cabal.project for sdist
Expand Down Expand Up @@ -156,15 +156,15 @@ jobs:
echo " ghc-options: -Werror=missing-methods" >> cabal.project
cat >> cabal.project <<EOF
EOF
$HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: $_ installed\n" unless /^(hasql-listen-notify)$/; }' >> cabal.project.local
$HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: any.$_ installed\n" unless /^(hasql-listen-notify)$/; }' >> cabal.project.local
cat cabal.project
cat cabal.project.local
- name: dump install plan
run: |
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
cabal-plan
- name: restore cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
path: ~/.cabal/store
Expand All @@ -191,7 +191,7 @@ jobs:
rm -f cabal.project.local
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
- name: save cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: always()
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions hasql-listen-notify.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ license: BSD-3-Clause
maintainer: Mitchell Rosen <[email protected]>, Travis Staton <[email protected]>
name: hasql-listen-notify
synopsis: LISTEN/NOTIFY with hasql
tested-with: GHC == 9.4.8, GHC == 9.6.3, GHC == 9.8.1
tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1
version: 0.1.0.1
x-revision: 1
x-revision: 2

extra-doc-files:
CHANGELOG.md
Expand Down

0 comments on commit 3639bb0

Please sign in to comment.