add docs job to groovy

This commit is contained in:
Stephen Birarda 2013-08-15 16:58:37 -07:00
parent 2ae5a56b6e
commit 6dd4aaf177

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
}
}
}