Skip to content

Commit 6960a88

Browse files
committed
Use integer-simple for all pkgs
1 parent 286de78 commit 6960a88

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ jobs:
4141
apk add --no-cache zlib zlib-dev zlib-static gmp gmp-dev ncurses-static
4242
- uses: actions/checkout@v2
4343

44+
- uses: ./.github/actions/setup-build
45+
with:
46+
ghc: ${{ matrix.ghc }}
47+
os: ${{ runner.os }}
48+
4449
# some alpines come with integer-simple instead of integer-gmp
4550
- name: Force integer-simple
4651
if: matrix.os == 'ubuntu-18.04'
4752
run: |
4853
if ghc --info | grep -q integer-simple ; then
49-
echo -e 'package blaze-textual\n flags: +integer-simple' >> cabal.project.local
54+
echo -e 'flags: +integer-simple' >> cabal.project.local
5055
fi
5156
52-
- uses: ./.github/actions/setup-build
53-
with:
54-
ghc: ${{ matrix.ghc }}
55-
os: ${{ runner.os }}
56-
5757
- name: (Windows) Platform specifics
5858
if: matrix.os == 'windows-latest'
5959
env:

0 commit comments

Comments
 (0)