what exactly does “archive artifacts” step do in Jenkins?

后端 未结 2 2018
攒了一身酷
攒了一身酷 2020-12-16 09:44

I have a Jenkins master server plus multiple slave machines that get created and destroyed all the time.

I could not find any documentation on what exactly \"archive

相关标签:
2条回答
  • 2020-12-16 10:34

    As Bruno stated it will "archive the artifacts" for that build back to your master.

    One thing to note also though is if you use the "Discard Old Builds" plugin, which I would encourage, at the start of the page make sure you expand the "advanced" button and check your settings as there are additional settings for specifically for artifacts and retention.

    0 讨论(0)
  • 2020-12-16 10:51

    If you are talking about the "Archive the artifacts" post-build step, it copies the selected artifacts in the %JENKINS_HOME%/jobs/MY_JOB/builds/... on the master server.

    So if you delete your slave or if you wipe your workspace, you won't lose your artifacts.

    But if you delete a build or if you discard the old builds, you will remove the artifacts.

    I hope it helps :)

    0 讨论(0)
提交回复
热议问题