chore(gitlab-ci): try to use ~/.stack dir for dependency caching

This commit is contained in:
Sarah Vaupel 2024-07-07 23:23:12 +02:00
parent b3a4700fec
commit e542dc5761

View File

@ -95,7 +95,7 @@ backend dependencies:
- &stack-cache - &stack-cache
key: default-stack key: default-stack
paths: paths:
- .stack - ${HOME}/.stack
- .stack-work - .stack-work
script: script:
- echo ${LC_ALL} ${LANG} - echo ${LC_ALL} ${LANG}
@ -103,7 +103,7 @@ backend dependencies:
before_script: *nix-before before_script: *nix-before
artifacts: artifacts:
paths: paths:
- .stack - ${HOME}/.stack
- .stack-work - .stack-work
name: "${CI_JOB_NAME}-${CI_COMMIT_SHORT_SHA}" name: "${CI_JOB_NAME}-${CI_COMMIT_SHORT_SHA}"
expire_in: "1 day" expire_in: "1 day"