极狐GitLab 正式推出面向 GitLab 老旧版本(12.x、13.x、14.x、15.x 等)免费用户的专业升级服务,点击查看详情

返回列表 发布新帖

锚点多次引用,build中引用失败,deploy中引用成功,这是为什么呢?

892 4
发表于 2024-4-28 21:05:51 | 显示全部楼层 阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

×

.test_anchors: &fanrui_hello
  script:
    - echo "测试锚点是否执行"

build-job:       # This job runs in the build stage, which runs first.
  stage: build
  # before_script:
  # - mkdir -p fanrui/hello/cache/__flag__
  <<: *fanrui_hello # 锚点第一次引用,引用结果:失败
  script:
      - mvn package
      - pwd  #/home/gitlab-runner/builds/6vHTy9wZy/0/fanrui/hello
  # cache:
  #   paths:
  #     - fanrui/hello/cache/__flag__
      #WARNING: processPath: artifact path is not a subpath of project directory: /tmp/gitlab_cache
  artifacts:
    paths:
      - "target/*.jar"
   
deploy-job:
  stage: deploy  # It only runs when *both* jobs in the test stage complete successfully.
  tags:
    - production
  script:
    - cp target/*.jar /var/www/html/hello.jar
    - crontab -i /var/www/html/cronfile.sh
    - echo ""
  <<: *fanrui_hello # 锚点第二次引用,引用结果:成功


回复

使用道具 举报

评论4

落雪无痕Lv.1 发表于 2024-4-29 08:33:53 来自手机 | 显示全部楼层
不是很清楚这个
回复

使用道具 举报

wangkaixuanLv.7 发表于 2024-4-29 09:31:40 | 显示全部楼层

build-job 这个job中需要将锚点放在script下面的。
在上面和在下面效果是不一样的
回复

使用道具 举报

永胜Lv.1 发表于 2024-4-29 09:40:44 | 显示全部楼层
你的语法建议参考这个文档里的样例。https://docs.gitlab.com/ee/ci/yaml/yaml_optimization.html

回复

使用道具 举报

fanrui楼主Lv.2 发表于 2024-4-29 14:45:08 | 显示全部楼层
wangkaixuan 发表于 2024-4-29 09:31
build-job 这个job中需要将锚点放在script下面的。
在上面和在下面效果是不一样的
...

嗯 谢谢了
回复

使用道具 举报

意见建议

Email:forum@gitlab.cn
  • 关注公众号
  • 添加专业顾问
Copyright © 2001-2024 极狐GitLab论坛 版权所有 All Rights Reserved. 鄂ICP备2021008419号-1|鄂公网安备42018502006137号
关灯 快速发帖
扫一扫添加专业顾问
返回顶部
快速回复 返回顶部 返回列表