如何在运行jenkins作业后保存consoleText

时间:2015-08-12 12:31:31

标签: jenkins

在Execute Shell中我使用了命令wget http://jenkins:8080/job/Jenkins_name_job/ $ {BUILD_ID} / consoleText

我想使用存档工件。但无法理解。 在Post-build Actions / Archive中我写了$ {Build_ID} / logs / *的工件。 但得到了错误: 错误:找不到与文件模式匹配的工件" 184 / logs / *"。配置错误?

2 个答案:

答案 0 :(得分:1)

应该是: wget http://jenkins:8080/job/Jenkins_name_job/ $ {BUILD_ID} / consoleText

在构建后的操作/存档中,我编写了$ {Build_ID} / **

的工件

答案 1 :(得分:0)

实际上要归档工件应该是${Build_ID}/logs/*.(log file type like log)

参考文献:My own Jenkins