Last Successful Artifacts List

五迷三道 提交于 2019-12-06 05:29:11

Edit the project properties. Click on the option "Archive the artifacts", and enter a pattern matching the artifacts you want to keep. For example, *.jar.

The presentation is changed based on the number of files you're archiving. There are three modes:

  • Plain list
  • Tree
  • Simple link

To control how many files need to be present before it switches to another presentation mode, set the system properties:

  • hudson.model.Run.ArtifactList.listCutoff (default 16)
  • hudson.model.Run.ArtifactList.treeCutoff (default 40)

Example java call:

java -Dhudson.model.Run.ArtifactList.listCutoff=40 -Dhudson.model.Run.ArtifactList.treeCutoff=100 -jar jenkins.war

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!