Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Build LaTeX PDF on Jenkins/Hudson

The team I work for manages a large collection of technical documentation which is written in LaTeX. Currently all the documentation we have is manually built by the editors and then checked into a version control system.

Is there a possibility to build the LaTeX files on jenkins/hudson?

like image 228
endian Avatar asked Jan 19 '12 09:01

endian


1 Answers

If you can build your LaTeX files from the command line, Jenkins can build it for you.
Just create a job with a "Execute shell" build step.

You've tagged this question with [ant], so if you're building your documentation using an Ant script, you can alternatively add an "Invoke Ant" build step which calls the appropriate target.

like image 132
Christopher Orr Avatar answered Sep 20 '22 11:09

Christopher Orr