Skip to content

Commit

Permalink
ci: loosen bounds for ghc84
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-abrar committed May 24, 2023
1 parent cc31b55 commit 464269d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
strategy:
matrix:
ghc: ['8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.1', '9.2.5', '9.4.5', '9.6.1']
ghc: ['8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.5', '9.4.5', '9.6.1']
os: ['ubuntu-latest', 'macos-latest']
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion reflex.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ library
stm >= 2.4 && < 2.6,
syb >= 0.5 && < 0.8,
time >= 1.4 && < 1.13,
transformers >= 0.6 && < 0.7,
transformers >= 0.5 && < 0.7,
unbounded-delays >= 0.1.0.0 && < 0.2,
witherable >= 0.4 && < 0.5

Expand Down
5 changes: 3 additions & 2 deletions release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ let
nixpkgsGhcs =
let
pkgs = import ./nixpkgs { inherit system; };
nixGhc945 = pkgs.haskell.packages.ghc945.override {
};
nixGhc902 = pkgs.haskell.packages.ghc902.override { };
nixGhc945 = pkgs.haskell.packages.ghc945.override { };
nixGhc961 = pkgs.haskell.packages.ghc961.override {
overrides = self: super: {
exception-transformers = pkgs.haskell.lib.doJailbreak super.exception-transformers;
Expand Down Expand Up @@ -71,6 +71,7 @@ let
};
in
{
ghc902 = nixGhc902.callCabal2nix "reflex" (import ./src.nix) {};
ghc945 = nixGhc945.callCabal2nix "reflex" (import ./src.nix) {};
ghc961 = nixGhc961.callCabal2nix "reflex" (import ./src.nix) {};
};
Expand Down

0 comments on commit 464269d

Please sign in to comment.