We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cf2da8 commit 2eba886Copy full SHA for 2eba886
.github/workflows/master.yml
@@ -50,7 +50,10 @@ jobs:
50
51
- name: Configure
52
run: |
53
- cabal install --ignore-project -j2 doctest --constraint='doctest ^>=0.18'
+ # Using separate store-dir because default one already has 'ghc-paths' package installed
54
+ # with hardcoded path to ghcup's GHC path (which it was built with). This leads to failure in
55
+ # doctest, as it tries to invoke that GHC, and it doesn't exist here.
56
+ cabal --store-dir /tmp/cabal-store install --ignore-project -j2 doctest --constraint='doctest ^>=0.18'
57
58
- name: Build
59
0 commit comments