jenkins attachments - what is the syntax?

主宰稳场 提交于 2019-12-08 16:21:57

问题


I'm trying to have Jenkins attach a file or set of files to the email notification that the job has completed. I keep getting an error along the lines of:

Sending email for trigger: Success ERROR: Error accessing files to attach: Expecting Ant GLOB pattern, but saw C:\p\p\etc\\\*\*\\\*.html.

See Fileset syntax

And yes I've looked at that site and tried every variation I could think of:

/ instead of \
../\*\*
../\*\*/\*.html
removing C:

What is the Ant GLOB pattern I'm missing here?

thanks, Scott


回答1:


The base directory for attachments is the workspace directory. Generally it means that you can't attach files that are higher in the directory hierarchy than the workspace (well, you can use ../, but you have to be very sure about your workspace location). A workaround to this kind of problems is to copy your files into the workspace first in a build step.




回答2:


Read the issue was reported in https://issues.jenkins-ci.org/browse/JENKINS-23329. Maybe, Hockeyapp plugin or jenkins has been updated, so, files should be under WORKSPACE; don't need the $WORKSPACE in the path and only need add path/to/apk or path/to/ipa.

Hence, change:

C:\p\p\etc***.html'

to

**\*.html'




回答3:


This might have occurred because of the attachment mentioned in the job (project) configuration is in the local directory

Check with attachment available in

"c:/users/username/.jenkins/workspace/Currentproject/"



来源:https://stackoverflow.com/questions/11731329/jenkins-attachments-what-is-the-syntax

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