9

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

Thomas CEDRINI
  • 171
  • 1
  • 3
  • 10

3 Answers3

10

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

$JENKINS_HOME/yourjobname/builds/yourbuildernumer

Br,

Tim

Tim
  • 2,006
  • 2
  • 18
  • 25
4

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

Khushi
  • 103
  • 9
1

you can find it under

jenkins_home/jobs/YourProjectName/builds
Terefe
  • 199
  • 2
  • 5