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
16 changes: 11 additions & 5 deletions .github/workflows/packcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,22 +79,28 @@ jobs:
cabal_version: 3.10.2.1
command: cabal

- name: 9.10.1+no-charts
- name: 9.10.1
ghc_version: 9.10.1
runner: ubuntu-latest
cabal_version: 3.10.2.1
command: cabal

- name: 9.12.1+no-charts
ghc_version: 9.12.1
runner: ubuntu-latest
cabal_version: 3.14.1.1
command: cabal
pack_options: >-
CABAL_BUILD_OPTIONS="-f no-charts"
DISABLE_TEST=y

- name: 9.10.1+allow-newer
ghc_version: 9.10.1
- name: 9.12.1+allow-newer
ghc_version: 9.12.1
runner: ubuntu-latest
cabal_version: 3.10.2.1
cabal_version: 3.14.1.1
command: cabal
pack_options: >-
CABAL_BUILD_OPTIONS="--allow-newer=lens,base"
CABAL_BUILD_OPTIONS="--allow-newer=base,text"

# - name: hlint
# command: cabal-v2
Expand Down
8 changes: 5 additions & 3 deletions bench-show.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ tested-with: GHC==9.2.8
, GHC==9.4.8
, GHC==9.6.4
, GHC==9.8.1
, GHC==9.10.1
, GHC==9.12.1
copyright: 2017, 2018 Composewell Technologies
stability: Experimental
build-type: Simple
Expand Down Expand Up @@ -148,7 +150,7 @@ executable bench-show
other-modules: Paths_bench_show
ghc-options: -Wall
build-depends:
base >= 4.8 && < 4.21
base >= 4.8 && < 5
, optparse-applicative >= 0.14.2 && < 0.19
, optparse-simple >= 0.1.0 && < 0.2
, bench-show
Expand All @@ -169,7 +171,7 @@ test-suite test

build-depends:
bench-show
, base >= 4.8 && < 4.21
, base >= 4.8 && < 5
, split >= 0.2 && < 0.3
, text >= 1.1.1 && < 2.2
-- , typed-process >= 0.1.0.0 && < 0.3
Expand All @@ -188,5 +190,5 @@ test-suite doc

build-depends:
bench-show
, base >= 4.8 && < 4.21
, base >= 4.8 && < 5
, split >= 0.2 && < 0.3
Loading