Skip to content
Open
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
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ matrix:
- compiler: "ghc-8.6.5"
# env: TEST=--disable-tests BENCH=--disable-benchmarks
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-8.6.5], sources: [hvr-ghc]}}
- compiler: "ghc-8.8.3"
# env: TEST=--disable-tests BENCH=--disable-benchmarks
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-8.8.3], sources: [hvr-ghc]}}
- compiler: "ghc-8.10.1"
# env: TEST=--disable-tests BENCH=--disable-benchmarks
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-8.10.1], sources: [hvr-ghc]}}

before_install:
- HC=${CC}
Expand Down
8 changes: 5 additions & 3 deletions Octree.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ tested-with: GHC==7.10.3
,GHC==8.2.2
,GHC==8.4.3
,GHC==8.6.5
,GHC==8.8.3
,GHC==8.10.1

source-repository head
type: git
location: git@github.com:mgajda/octree.git

Library
build-depends: base>=4.0 && < 4.13,
build-depends: base>=4.0 && < 4.15,
deepseq >= 1.2.0.0,
lens >= 4.13.0,
linear >= 1.18.0,
Expand All @@ -41,7 +43,7 @@ Library

Test-suite test_Octree
Type: exitcode-stdio-1.0
Build-depends: base>=4.0 && < 4.13, linear >= 1.20.0, QuickCheck >= 2.8.0,
Build-depends: base>=4.0 && < 4.15, linear >= 1.20.0, QuickCheck >= 2.8.0,
deepseq >= 1.2.0.0,
lens >= 4.13.0
other-modules: Data.Octree
Expand All @@ -52,7 +54,7 @@ benchmark bench-octree
type: exitcode-stdio-1.0
other-modules: Data.Octree.Internal
main-is: tests/benchmark.hs
build-depends: base >=4.0 && <4.13, deepseq, ghc-prim,
build-depends: base >=4.0 && <4.15, deepseq, ghc-prim,
linear >= 1.18.0, QuickCheck >= 2.8.0,
lens >= 4.13.0,
criterion
Expand Down
3 changes: 1 addition & 2 deletions stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
# resolver:
# name: custom-snapshot
# location: "./custom-snapshot.yaml"
resolver: lts-14.4
#resolver: lts-6.0
resolver: lts-16.6

# User packages to be built.
# Various formats can be used as shown in the example below.
Expand Down