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
46 changes: 24 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,37 +18,39 @@ jobs:
matrix:
include:
# Linux
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.0.2" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.2.2" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.4.4" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.6.5" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.8.4" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "8.10.7" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.0.2" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.2.8" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.4.8" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.6.5" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.6.5",
- { cabal: "3.12", os: ubuntu-22.04, ghc: "8.0.2" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "8.2.2" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "8.4.4" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "8.6.5" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "8.8.4" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "8.10.7" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "9.0.2" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "9.2.8" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "9.4.8" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "9.6.6" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "9.6.6",
flags: "-fUnsafeChecks -fInternalChecks" }
- { cabal: "3.10", os: ubuntu-22.04, ghc: "9.8.2" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "9.8.2" }
- { cabal: "3.12", os: ubuntu-22.04, ghc: "9.10.1" }
# Win
- { cabal: "3.10", os: windows-latest, ghc: "8.4.4" }
- { cabal: "3.12", os: windows-latest, ghc: "8.4.4" }
# OOM when building tests
# - { cabal: "3.6", os: windows-latest, ghc: "8.6.5" }
# - { cabal: "3.6", os: windows-latest, ghc: "8.8.4" }
# - { cabal: "3.6", os: windows-latest, ghc: "8.10.4" }
# Too flaky:
# - { cabal: "3.6", os: windows-latest, ghc: "9.0.1" }
# MacOS
- { cabal: "3.10", os: macOS-13, ghc: "8.4.4" }
- { cabal: "3.10", os: macOS-13, ghc: "8.6.5" }
- { cabal: "3.10", os: macOS-13, ghc: "8.8.4" }
- { cabal: "3.10", os: macOS-13, ghc: "8.10.7" }
- { cabal: "3.10", os: macOS-13, ghc: "9.0.2" }
- { cabal: "3.10", os: macOS-latest, ghc: "9.2.8" }
- { cabal: "3.10", os: macOS-latest, ghc: "9.4.8" }
- { cabal: "3.10", os: macOS-latest, ghc: "9.6.5" }
- { cabal: "3.10", os: macOS-latest, ghc: "9.8.2" }
- { cabal: "3.12", os: macOS-13, ghc: "8.4.4" }
- { cabal: "3.12", os: macOS-13, ghc: "8.6.5" }
- { cabal: "3.12", os: macOS-13, ghc: "8.8.4" }
- { cabal: "3.12", os: macOS-13, ghc: "8.10.7" }
- { cabal: "3.12", os: macOS-13, ghc: "9.0.2" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.2.8" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.4.8" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.6.6" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.8.2" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.10.1" }
fail-fast: false

steps:
Expand Down
2 changes: 1 addition & 1 deletion vector-stream/vector-stream.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Library
Hs-Source-Dirs:
src

Build-Depends: base >= 4.9 && < 4.21
Build-Depends: base >= 4.9 && < 4.22
, ghc-prim >= 0.2 && < 0.12

source-repository head
Expand Down
2 changes: 1 addition & 1 deletion vector/vector.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Library
Install-Includes:
vector.h

Build-Depends: base >= 4.9 && < 4.21
Build-Depends: base >= 4.9 && < 4.22
, primitive >= 0.6.4.0 && < 0.10
, deepseq >= 1.1 && < 1.6
, vector-stream >= 0.1 && < 0.2
Expand Down
Loading