如何在gitlab中缓存-ci
How to cache in gitlab-ci
我应该如何在 gitlab-ci 中为 scala 项目 缓存 coursier dependencies .我正在使用 docker 执行器。
*Gitlab - 8.4.2
Gitlab 运行器 - 1.0.4*
我的/etc/gitlab-runner/config.toml
[runners.docker]
image = "docker.**.com/docker:latest"
privileged = false
disable_cache = false
volumes = [
"/cache",
"/var/run/docker.sock:/var/run/docker.sock",
"/data/gitlab-runner/ansible_vault_password.txt:/etc/ansible_vault_password.txt:ro",
]
gitlab-ci.yml 文件包含
stages:
- build
- test
- publish
- cleanup
create:
type: build
script:
- docker build --rm --pull -t docker.**.com/sbt:latest -f Dockerfile .
- docker images
lint:
type: test
image: docker.***.com/sbt
script:
- sbt scalastyle
- sbt scalafmtTest
unit tests:
type: test
image: docker.**.com/sbt
script:
- sbt test
publish jar:
type: publish
image: docker.**.com/sbt
script:
- sbt assembly
- sbt publish
only:
- master
remove containers:
type: cleanup
script:
- docker rmi -f docker.**.com/sbt:latest
when: always
插件文件包含
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "0.4.8")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0")
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-M14")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.1")
有什么建议或提示吗?
您需要在 Gitlab Runner 上启用缓存(看起来您已经拥有)。从那里,您需要在 .gitlab-ci.yml
文件中添加一个 cache
键。
我不确定 sbt
默认将其缓存目录放在哪里,但您几乎可以肯定必须更改它,以便它位于工作区目录中。
有关完整指南,请参阅 https://docs.gitlab.com/ce/ci/yaml/#cache,但我想您会这样做:
stages:
- build
- test
- publish
- cleanup
cache:
paths:
- cache/sbt
create:
type: build
script:
- docker build --rm --pull -t docker.xxx.com/sbt:latest -f Dockerfile .
- docker images
...
其中 cache/sbt
是包含 sbt 缓存的源文件夹的相对路径。您只能使用项目工作区内的路径进行缓存。
我应该如何在 gitlab-ci 中为 scala 项目 缓存 coursier dependencies .我正在使用 docker 执行器。
*Gitlab - 8.4.2
Gitlab 运行器 - 1.0.4*
我的/etc/gitlab-runner/config.toml
[runners.docker]
image = "docker.**.com/docker:latest"
privileged = false
disable_cache = false
volumes = [
"/cache",
"/var/run/docker.sock:/var/run/docker.sock",
"/data/gitlab-runner/ansible_vault_password.txt:/etc/ansible_vault_password.txt:ro",
]
gitlab-ci.yml 文件包含
stages:
- build
- test
- publish
- cleanup
create:
type: build
script:
- docker build --rm --pull -t docker.**.com/sbt:latest -f Dockerfile .
- docker images
lint:
type: test
image: docker.***.com/sbt
script:
- sbt scalastyle
- sbt scalafmtTest
unit tests:
type: test
image: docker.**.com/sbt
script:
- sbt test
publish jar:
type: publish
image: docker.**.com/sbt
script:
- sbt assembly
- sbt publish
only:
- master
remove containers:
type: cleanup
script:
- docker rmi -f docker.**.com/sbt:latest
when: always
插件文件包含
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "0.4.8")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0")
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-M14")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.1")
有什么建议或提示吗?
您需要在 Gitlab Runner 上启用缓存(看起来您已经拥有)。从那里,您需要在 .gitlab-ci.yml
文件中添加一个 cache
键。
我不确定 sbt
默认将其缓存目录放在哪里,但您几乎可以肯定必须更改它,以便它位于工作区目录中。
有关完整指南,请参阅 https://docs.gitlab.com/ce/ci/yaml/#cache,但我想您会这样做:
stages:
- build
- test
- publish
- cleanup
cache:
paths:
- cache/sbt
create:
type: build
script:
- docker build --rm --pull -t docker.xxx.com/sbt:latest -f Dockerfile .
- docker images
...
其中 cache/sbt
是包含 sbt 缓存的源文件夹的相对路径。您只能使用项目工作区内的路径进行缓存。