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 93f9722 commit 953cd14Copy full SHA for 953cd14
.github/workflows/caching.yml
@@ -46,8 +46,13 @@ on:
46
47
# Not using a explicit target to build the top level haskell-language-server package
48
# which make build the rest of subpackages *libs* (but shake-bench)
49
+#
50
+# We choose a very short build directory, as we run into long path issues on windows.
51
+# See cabal tracking issue https://github.com/haskell/cabal/issues/11395
52
+# We can't set the `--builddir` via `v2-configure` as cabal doesn't support this.
53
+# https://github.com/haskell/cabal/issues/5271
54
env:
- cabalBuild: "v2-build --keep-going"
55
+ cabalBuild: "v2-build --keep-going --builddir b"
56
57
jobs:
58
pre_job:
0 commit comments