ERROR: No artifacts found that match the file pattern

I got this error when I executing my robot tests in Jenkins. Can anyone help me out here?


what you specify for archiving should be relative to the workspace of the job and not absolute paths. And you shouldn’t use backslashes. The format to use is the ant syntax, in your case I think Suites/EEH/report.html should work if you really want just this one file. You can also use **/*/report.html that would find all files named report.html

It’s working, Thanks you !