马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
×
build-job: # This job runs in the build stage, which runs first.
stage: build
script:
- mvn package
- pwd #/home/gitlab-runner/builds/6vHTy9wZy/0/fanrui/hello
cache:
paths:
- "/tmp/gitlab_cache"
#WARNING: processPath: artifact path is not a subpath of project directory: /tmp/gitlab_cache
artifacts:
paths:
- "target/*.jar"
以上是我的demo,当 path 设置为 - "/tmp/gitlab_cache" ,提示如下一行:不是项目的子目录;但 打印了项目目录后 6vHTy9wZy 这个是动态的,请问 缓存的目录该设置规则具体是什么?上面该如何修改?
|