Hi i am new to the world of continuous integration. could someone please explain to me the idea of artifacts in the build process ?

i have the workspace directory where i check out the code to, compile, and run my ant scripts etc. at the end, in my case i get a jar file, ready to install. is that considered to be the artifact ?

where should i tell my ant task to put the jar file ? in workspace direcory ? then how do i use the artifacts Archive the artifacts option correctly ? my jar file gets a unique filename depending on variables like BUILD_ID and such, how can i tell hudson which jar file to pick ?

i am a little confused here, would appreciate any explanation or a link to an explanation on the web (most of the pages i found weren't so easy to understand for a newbie)

thanks !

EDIT: Okay, so i try to do something like this :

enter image description here

the path does not exist yet in my workspace, because the ant script is suppose to create it, and of course, the .jar and .properties files are not there because they haven't been generated yet. why does it give me an error then ? seems like i'm missing something.

also, does jenkins delete the artifacts after each build (not the archived artifacts, i know i can tell it to delelte those)? otherwise it will clog the HDD really fast.

link|improve this question

2  
The error you're getting is most likely not a problem - if the build process is successful, it should be created. Save and try this out, having a few broken builds while setting up the pipeline is perfectly normal. :) – Anders Lindahl Apr 28 '11 at 16:28
Don't be scared by the warning, if a artifact is generated after build, it will be archived by your config(although there is a warning in config page). – Huang F. Lei Feb 4 at 8:11
feedback

2 Answers

up vote 6 down vote accepted

Your understanding is correct, an artifact in the Jenkins sense is the result of a build - the intended output of the build process.

A common convention is to put the result of a build into a build, target or bin directory.

The Jenkins archiver can use globs (target/*.jar) to easily pick up the right file even if you have a unique name per build.

link|improve this answer
@Andres thanks, also, does jenkins delete the artifacts after each build (not the archived artifacts, i know i can tell it to delelte those)? or am i responsible to do it myslef ? – Michael Apr 28 '11 at 16:33
2  
@michael: You have to clean the workspace yourself, it's good practice to clear at least the target directory before every build to make sure you don't end up with the results of an earlier build. – Anders Lindahl Apr 28 '11 at 16:44
feedback

An artifact can be any result of your build process. The important thing is that it doesn't matter on which client it was built it will be tranfered from the workspace back to the master (server) and stored there with a link to the build. The advantage is that it it is versionized this way, you only have to setup backup on your master and that all artifacts are accesible via the web interface even if all build clients are offline.

It is possible to define a regular expression as the artifact name. In my case I zipped all the files I wanted to store in one file with a constant name during the build.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.