How to download assembly output files from the Jenkins console console itself

I am the new Jenkins using jenkins 1.651.3 War deployed on Tomcat6
Is there a way to load the output of the Jenkins job file (my job created the jar file) from the Jenkins UI Console itself?

So, can anyone suggest me if there is any way or plugin available for every Jenkins output file (like Jar / War) as being downloaded from the Jenkins server machine.

[INFO] [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ NumberGenerator --- [INFO] Building jar: /opt/cloudhost/jenkinsHome/jobs/TestGiby/workspace/NumberGenerator/target/NumberGenerator-0.0.1-SNAPSHOT.jar [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ NumberGenerator --- [INFO] Installing /opt/cloudhost/jenkinsHome/jobs/TestGiby/workspace/NumberGenerator/target/NumberGenerator-0.0.1-SNAPSHOT.jar to /opt/cloudhost/software/maven/mavenRepo/com/giby/maven/NumberGenerator/0.0.1-SNAPSHOT/NumberGenerator-0.0.1-SNAPSHOT.jar [INFO] Installing /opt/cloudhost/jenkinsHome/jobs/TestGiby/workspace/NumberGenerator/pom.xml to /opt/cloudhost/software/maven/mavenRepo/com/giby/maven/NumberGenerator/0.0.1-SNAPSHOT/NumberGenerator-0.0.1-SNAPSHOT.pom [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2.575 s [INFO] Finished at: 2017-02-01T05:00:44+00:00 [INFO] Final Memory: 19M/607M [INFO] ------------------------------------------------------------------------ Finished: SUCCESS 
+5
source share
1 answer

Use the Archive the artifacts post-build step, it copies the selected artifacts to the artifacts folder.

Archive artifact build step

Then you can download the file from the build page.

Download artifact assembly

+10
source

Source: https://habr.com/ru/post/1263652/


All Articles