gpt4 book ai didi

haskell - Haskell Stack 项目 : How to cache built libraries? 的 gitlab-CI

转载 作者:行者123 更新时间:2023-12-01 01:40:41 25 4
gpt4 key购买 nike

我正在使用以下 .gitlab-ci.yml用于为使用 stack new actividad3 --resolver=lts-14.6 创建的 Haskell Stack 项目设置 gitlab-CI 的文件.

image: haskell:8.6.5

cache:
paths:
- .stack
- .stack-work
- target

test:
stage: test
script:
- ghc --version
- stack --system-ghc build
- stack test

项目的构建和测试持续了将近 5 分钟。大部分时间用于构建 hspec 库。有没有办法在管道运行之间缓存使用的库?

提前致谢。

最佳答案

将这些部件添加到您的 .gitlab-ci.yml :

variables:
STACK_ROOT: "${CI_PROJECT_DIR}/.stack-root"

cache:
paths:
- .stack-work/
- .stack-root/
$STACK_ROOT env 变量更改文件夹堆栈用于其全局文件。这是必需的,因为 GitLab CI 只能缓存项目文件夹下的文件,所以缓存 $HOME/.stack , ~/.stack/root/.stack不会工作。

网络上的一些相关引用资料:
  • http://blog.braulio.me/2018/10/24/use-haskell-stack-gitlab-ci.html ;
  • https://vadosware.io/post/zero-to-continuous-integrated-testing-a-haskell-project-with-gitlab/
  • https://dev.to/drbearhands/haskell-for-madmen-setup-4cj9
  • https://github.com/bitemyapp/haskell-continuous-integration/blob/master/.gitlab-ci.yml
  • 关于haskell - Haskell Stack 项目 : How to cache built libraries? 的 gitlab-CI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58017051/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com