Merge pull request #856 from birarda/master

add doxygen job for jenkins to groovy
This commit is contained in:
Leonardo Murillo 2013-08-15 17:04:17 -07:00
commit a0dc4305a5

View file

@ -140,3 +140,14 @@ 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
}
}
}