Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where jenkins store build files result?

I am wondering if there is a way to get the files result of a Jenkins build.

I configure Jenkins to create the build, so it successfully pull my gitlab and then compile my project. So it should have my files and the compilation result stored somewhere right?

The only files I could see in the last build for my job directory are :

  • build.xml
  • changelog.xml
  • log

Thanks for your help, really appreciate that !

Thomas

like image 733
Thomas CEDRINI Avatar asked Aug 25 '16 09:08

Thomas CEDRINI


3 Answers

You can get the jenkins build files: /var/lib/jenkins/jobs/<yourjobname> builds

like image 85
Khushi Avatar answered Nov 04 '22 21:11

Khushi


Workspace will keep the latest build, the legacy will be kept inside the jenkins master slave under

$JENKINS_HOME/yourjobname/builds/yourbuildernumer

Br,

Tim

like image 23
Tim Avatar answered Nov 04 '22 21:11

Tim


you can find it under

jenkins_home/jobs/YourProjectName/builds
like image 38
Terefe Avatar answered Nov 04 '22 19:11

Terefe