Is there any Jenkins API to get artifacts name and download it?

18,369

Solution 1

According to this answer: https://superuser.com/questions/587426/download-a-file-from-the-latest-stable-jenkins-build

You can use the Jenkins API to get the list of artifacts: http://your.jenkins.server/job/your.job/lastStableBuild/api/xml?tree=artifacts%5BrelativePath%5D

With a script, you can extract the artefact relative path:

enter image description here

Next, you can build your download URLs like: http://your.jenkins.server/job/your.job/lastStableBuild/artifact/relativePath

Solution 2

you can download created artifacts with curl:

curl -u "${USR}":"${PWD}" $JENKINS'/job/'"${NAM}"/"{$JOB}"'/artifact/*zip*/archive.zip' --output "${NAM}_{$JOB}_archive.zip"
Share:
18,369
Kenny Basuki
Author by

Kenny Basuki

Updated on June 27, 2022

Comments

  • Kenny Basuki
    Kenny Basuki almost 2 years

    I want to ask, If I use jenkins. How can I get all artifacts list and download it, but not from jenkins web interface. I want to make my own web interface for certain goals.

    Is there any jenkins API to do this?

  • To Kra
    To Kra about 7 years
    i would also need to get artifact size. is it possible somehow ?