File tree 2 files changed +9
-8
lines changed
2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 54
54
fi
55
55
shell : bash
56
56
57
+ # some alpines come with integer-simple instead of integer-gmp
58
+ - name : Force integer-simple
59
+ if : inputs.os == 'Linux'
60
+ run : |
61
+ if ghc --info | grep -q integer-simple ; then
62
+ echo -e 'flags: +integer-simple' >> cabal.project.local
63
+ fi
64
+ shell : bash
65
+
57
66
- if : inputs.os == 'Windows' && inputs.ghc == '8.8.4'
58
67
name : (Windows,GHC 8.8) Modify `cabal.project` to workaround segfaults
59
68
run : |
Original file line number Diff line number Diff line change 46
46
ghc : ${{ matrix.ghc }}
47
47
os : ${{ runner.os }}
48
48
49
- # some alpines come with integer-simple instead of integer-gmp
50
- - name : Force integer-simple
51
- if : matrix.os == 'ubuntu-18.04'
52
- run : |
53
- if ghc --info | grep -q integer-simple ; then
54
- echo -e 'package blaze-textual\n flags: +integer-simple' >> cabal.project.local
55
- fi
56
-
57
49
- name : (Windows) Platform specifics
58
50
if : matrix.os == 'windows-latest'
59
51
env :
You can’t perform that action at this time.
0 commit comments