Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been playing with Jenkins and got it all working. Version 1.447

However I would like to "publish" the latest stable build to an area outside the Jenkins workspace/job area. This would be where users could pick up the latest stable build for testing and would save me having to point them to the .

Can someone recommend how I should go about approaching this? Jenkins seems to have the ability to publish artefacts but only within the Jenkins workspace/area. Is there a good plugin that can do what I want. I'll also want to completely delete the existing build first.

share|improve this question

3 Answers

There are a bunch of plugins available for this, depending on how you want to transfer your artifact...

If you go here, look for a section called Artifact uploaders, and it lists a bunch of others that you can use depending on your needs...

share|improve this answer

To accomplish this I add a post-build action to trigger a second job (build other projects -> projects to build, tick 'trigger only if build succeeds'). All this second job does is run a command (using the 'execute shell' field) which deploys the stable build for testing.

If you don't want to keep the existing build from the first job around, you can choose not to keep the builds after they have been run via the project config.

share|improve this answer

If you're building maven project you could use maven 'deploy' to push build artifacts to your build repository (could be just a file structure anywhere or could be a true binary artifacts repository)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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