I have been using Perl to do similar things. I build everything internally in the same manner as one would a CPAN module, and this is checked into a private git repo.
From there it is simple to call custom tools to build and deploy services in Perl.
My favorite feature about Perl is that version 5.x is compatible with each release and our code has worked without issue for over a decade.
Comments
I have been using Perl to do similar things. I build everything internally in the same manner as one would a CPAN module, and this is checked into a private git repo.
From there it is simple to call custom tools to build and deploy services in Perl.
My favorite feature about Perl is that version 5.x is compatible with each release and our code has worked without issue for over a decade.
I recently integrated some Go code into part of my module and wrote a post about how to compile it as part of the build process here : http://www.tysonmaly.com/programming/go/using-go-perl-makefi...