We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 961a82d commit 217ecd7Copy full SHA for 217ecd7
1 file changed
.cirrus.yml
@@ -18,7 +18,11 @@ task:
18
platform: openbsd
19
install_script: pkg_add ghc cabal-install git
20
script:
21
- - export CABAL_DIR=/tmp/.cabal
+ # OpenBSD image has separate /home partition, / is small
22
+ # as we run everything as root, we run out space
23
+ # we hack around making cabal write its stuff in /home
24
+ - mkdir -p /home/cabal
25
+ - ln -s /home/cabal $HOME/.cabal
26
- cabal update
27
# For some reason the job fails with -O2 optimization level,
28
# probably because of lack of disk space.
0 commit comments