0
votes

trying to archive all the files into a zip file that is formed in the workspace in jenkins pipeline script. I tried using this

archiveArtifacts 'C:\Program Files (x86)\Jenkins\jobs\pipeline CI_MS\workspace'

but error was shown as "file not found"

Thanks for any help

1

1 Answers

2
votes

Do you really want to archive everything in the entire workspace? Hardcoding the path like that is a bad idea. The workspace moves, and if you are using a more recent version of Jenkins (that wasn't upgraded from an old version), you are probably not even looking in the right space.

Use this:

archiveArtifacts "${WORKSPACE}"

Add to the end of the path if you want to archive files in subdirectories.