Skip to content

Commit a73bc35

Browse files
Disable fusion-plugin by default
1 parent 7949f46 commit a73bc35

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/haskell.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,19 +209,21 @@ jobs:
209209
#pack_options: >-
210210
#CABAL_PROJECT=cabal.project.d/master
211211

212+
# haddock fails with fusion-plugin
212213
- name: ci
213214
runner: ubuntu-latest
214215
command: cabal
215216
ghc_version: 9.4.7
216-
#pack_options: >-
217-
#CABAL_PROJECT=cabal.project.d/master
217+
pack_options: >-
218+
DISABLE_DOCS=y
218219
220+
# haddock fails with fusion-plugin
219221
- name: ci
220222
runner: ubuntu-latest
221223
command: cabal
222224
ghc_version: 9.2.8
223-
#pack_options: >-
224-
#CABAL_PROJECT=cabal.project.d/master
225+
pack_options: >-
226+
DISABLE_DOCS=y
225227
226228
- name: no-docs
227229
runner: ubuntu-latest

streamly-coreutils.cabal

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ source-repository head
4040
type: git
4141
location: https://github.com/composewell/streamly-coreutils
4242

43+
-- Keep default False, haddock fails with it in some cases, not sure if hackage
44+
-- haddock will work correctly.
4345
flag fusion-plugin
4446
description: Use fusion plugin for best performance
4547
manual: True
46-
default: True
48+
default: False
4749

4850
common compile-options
4951
default-language: Haskell2010

0 commit comments

Comments
 (0)