Thomas CEDRINI
Thomas CEDRINI

Reputation: 181

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 :

Thanks for your help, really appreciate that !

Thomas

Upvotes: 10

Views: 30434

Answers (3)

Khushi
Khushi

Reputation: 103

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

Upvotes: 4

Terefe
Terefe

Reputation: 309

you can find it under

jenkins_home/jobs/YourProjectName/builds

Upvotes: 1

Tim
Tim

Reputation: 2066

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

$JENKINS_HOME/yourjobname/builds/yourbuildernumer

Br,

Tim

Upvotes: 10

Related Questions