diff --git a/jenkins/jobs.groovy b/jenkins/jobs.groovy index 8e5e385332..afd5e6529a 100644 --- a/jenkins/jobs.groovy +++ b/jenkins/jobs.groovy @@ -140,3 +140,16 @@ parameterizedJob.with { tasks / 'hudson.plugins.postbuildtask.TaskProperties' / script).setValue(curlCommand) } } + +doxygenJob = hifiJob('docs', false) +doxygenJob.with { + configure { project -> + (project / builders).setValue('') + project / publishers / 'hudson.plugins.doxygen.DoxygenArchiver' { + doxyfilePath 'Doxyfile' + keepAll false + } + } +} + +queue doxygenJob \ No newline at end of file