If I understood correctly, you could use groovy post build in order to create your own build dashboard:
- https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Postbuild+Plugin And add a build script like the above one def branch = manager.getEnvVariable("branch") ... manager.createSummary("folder.gif").appendText("<h1>Artifacts:</h1> <a href=/${ <http://jenkins.subdomain.com/job/branch/build_id/artifact/bin/Artifacts/branch-build_id-bin.7z>branch}/build_id/artifact/bin/Artifacts/branch-build_id-bin.7z <http://jenkins.subdomain.com/job/branch/build_id/artifact/bin/Artifacts/branch-build_id-bin.7z>> 7z</a>", false, false, false, "green") Cheers On Tuesday, 22 September 2015 12:01:55 UTC+2, [email protected] wrote: > > Hello! > > Help me, please, i have some troubles with publishing artifacts. My > jenkins server located on the subdomain jenkins.mysubdomain.com and after > build it generates links such as > http://jenkins.subdomain.com/job/branch/build_id/artifact/bin/Artifacts/branch-build_id-bin.7z > > for download artifacts. But there aren't any files with these links. How > can i specify link for artifacts on the build page or publish artifactes on > the link address (without using artifacts plugins)? > > Alexey Shirjaew > -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/a3ce90e0-3a6d-457b-b212-a322ff7ff504%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
