Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Jenkins and Perl

by blue_cowdawg (Monsignor)
on Aug 03, 2015 at 19:14 UTC ( [id://1137286]=perlquestion: print w/replies, xml ) Need Help??

blue_cowdawg has asked for the wisdom of the Perl Monks concerning the following question:

I just discovered Jenkins and I'm having a blast with it having discovered all sorts of things I can do with it.

Looking at the plethora of plugins available I discovered a couple of plugins having to do with Perl that don't seem to be documented. These are:

  • Perl Plugin
  • Perl Smoke Test Plugin
Sadly there doesn't seem to be any documentation for them. Is there and I'm just not finding it?


Peter L. Berghold -- Unix Professional
Peter -at- Berghold -dot- Net; Blog: http://blog.berghold.net Warning: No political correctness allowed.

Replies are listed 'Best First'.
Re: Jenkins and Perl
by Laurent_R (Canon) on Aug 03, 2015 at 19:46 UTC
Re: Jenkins and Perl
by jeffa (Bishop) on Aug 03, 2015 at 20:55 UTC

    I confess i have not been keeping up with new plugins, but here is my general Configuration that i use to build my CPAN modules from my github repo:

    DIST=Your-Git-Distro rm -f *.tar.gz rm -rf ./$DIST git clone git://github.com/jeffa/$DIST.git cd $DIST perl Makefile.PL make make {test,manifest,tardist} mv $DIST-*.tar.gz .. mv MANIFEST ../MANIFEST.txt make veryclean prove -rlj3 --formatter=TAP::Formatter::JUnit --timer t/| tee ../junit +.xml pod2html --infile lib/My/HardCoded/Path/To/Module.pm --outfile ../$DIS +T.html
    I also configure the "Files to archive" to *.tar.gz,*.txt,*.html (Archive the Artifacts) as well as set "Test report XMLs" to junit.xml (Publish JUnit test result report). The results are archives of the POD and distribution tar ball as well as a nice JUnit graph for the test pass/fails. Hope this helps!

    jeffa

    L-LL-L--L-LL-L--L-LL-L--
    -R--R-RR-R--R-RR-R--R-RR
    B--B--B--B--B--B--B--B--
    H---H---H---H---H---H---
    (the triplet paradiddle with high-hat)
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1137286]
Front-paged by Corion
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-26 00:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found