Skip to content

Commit 338afef

Browse files
committed
force integer-simple
1 parent bf1323b commit 338afef

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,12 @@ jobs:
172172
with:
173173
ghc-version : ${{ matrix.ghc }}
174174
cabal-version: ${{ matrix.cabal }}
175-
175+
# some alpines need workaround
176+
- name: Force integer-simple
177+
run: |
178+
if ghc --info | grep -q integer-simple ; then
179+
echo -e 'package blaze-textual\n flags: +integer-simple' >> cabal.project.local
180+
fi
176181
- name: Use modified cabal.project for ghc9
177182
if: ${{ matrix.ghc == '9.0.1' }}
178183
run: cp cabal-ghc901.project cabal.project

0 commit comments

Comments
 (0)