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: 10 additions & 6 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

PACKCHECK: "./packcheck.sh"
PACKCHECK_GITHUB_URL: "https://raw.githubusercontent.com/composewell/packcheck"
PACKCHECK_GITHUB_COMMIT: "ccc55fd4b895e842ca6e2d8ac63aa4acc1c3209a"
PACKCHECK_GITHUB_COMMIT: "7c4e1ab7a59b5ed6e92cfd0da67460a6116be4ac"

BUILD: ${{ matrix.build }}
GHCVER: ${{ matrix.ghc_version }}
Expand All @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
name: [head, 9.10.1, 9.8.1, 9.6.3, 9.4.7, 9.2.8+macOS, 9.0.2, 8.10.7, 8.8.4, 8.6.5]
name: [head, 9.12.1, 9.10.1, 9.8.1, 9.6.3, 9.4.7+macos, 9.2.8, 9.0.2, 8.10.7, 8.8.4, 8.6.5]
cabal_version: ["3.8.1.0"]
include:
- name: head
Expand All @@ -47,6 +47,10 @@ jobs:
runner: ubuntu-latest
cabal_project: cabal.project.ghc-head
ghcup_ghc_options: "-u https://gitlab.haskell.org/ghc/ghc/-/jobs/artifacts/master/raw/ghc-x86_64-linux-deb10-int_native-validate.tar.xz?job=x86_64-linux-deb10-int_native-validate"
- name: 9.12.1
ghc_version: 9.12.1
build: cabal-v2
runner: ubuntu-latest
- name: 9.10.1
ghc_version: 9.10.1
build: cabal-v2
Expand All @@ -59,14 +63,14 @@ jobs:
ghc_version: 9.6.3
build: cabal-v2
runner: ubuntu-latest
- name: 9.4.7
- name: 9.4.7+macos
ghc_version: 9.4.7
build: cabal-v2
runner: ubuntu-latest
- name: 9.2.8+macOS
runner: macos-latest
- name: 9.2.8
ghc_version: 9.2.8
build: cabal-v2
runner: macos-latest
runner: ubuntu-latest
disable_sdist_build: "y"
- name: 9.0.2
ghc_version: 9.0.2
Expand Down
6 changes: 4 additions & 2 deletions fusion-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ tested-with: GHC==8.6.5
, GHC==9.4.7
, GHC==9.6.3
, GHC==9.8.1
, GHC==9.10.1
, GHC==9.12.1
author: Pranay Sashank
maintainer: streamly@composewell.com
copyright: (c) 2019 Composewell Technologies
Expand All @@ -51,9 +53,9 @@ library
, containers >= 0.5.6.2 && < 0.8
, directory >= 1.2.2.0 && < 1.4
, filepath >= 1.4 && < 1.6
, ghc >= 7.10.3 && < 9.11
, ghc >= 7.10.3 && < 9.13
, syb >= 0.7 && < 0.8
, time >= 1.5 && < 1.14
, time >= 1.5 && < 1.15
, transformers >= 0.4 && < 0.7

, fusion-plugin-types >= 0.1 && < 0.2
Expand Down
Loading