gitlab ci作业与工件报告和路径

时间:2019-02-26 21:29:22

标签: gitlab gitlab-ci

所以,我想做的就是这样:

rspec:
  script:
    - gem install rspec_junit_formatter
    - bundle exec rspec spec --format RspecJunitFormatter --out rspec.xml
  artifacts:
    name: "rspec"
    reports:
        junit: rspec.xml
    name: "coverage"
    paths:
        - coverage/

这将超出运行规范的规格报告和coverage文件夹(然后压缩并添加yada yada yada)。我也不介意获得该规范的另一个版本...。(但是,可以通过在rspec命令中添加另一个输出器并将路径添加到paths密钥来轻松实现,对吗?)

0 个答案:

没有答案