diff --git a/devel/tinderbox/buildbot/master/master.cfg b/devel/tinderbox/buildbot/master/master.cfg index 828d0a2ac..bf2a683ea 100644 --- a/devel/tinderbox/buildbot/master/master.cfg +++ b/devel/tinderbox/buildbot/master/master.cfg @@ -72,6 +72,9 @@ re_doxygen = [ '^trunk/aegisub/src/libosxutil/.*\.h$', '^trunk/aegisub/src/libosxutil/.*\.c$', '^trunk/aegisub/src/include/aegisub/.*' + '^trunk/aegisub/reporter/.*\.c$', + '^trunk/aegisub/reporter/.*\.cpp$', + '^trunk/aegisub/reporter/.*\.h$', ] @@ -598,9 +601,9 @@ fwww_dox = factory.BuildFactory() fwww_dox.addStep(source.SVN(mode="clobber", svnurl=source_unix)) fwww_dox.addStep(shell.ShellCommand( - name = "doxygen", - description = "doxygening", - descriptionDone = "doxygen", + name = "aegisub", + description = "generating", + descriptionDone = "done", logfiles={ 'doxygen.log': 'doxygen.log' }, @@ -608,10 +611,28 @@ fwww_dox.addStep(shell.ShellCommand( "sh", "-x", "tinderbox/www/doxygen.sh" + "aegisub" ], haltOnFailure=True )) +fwww_dox.addStep(shell.ShellCommand( + name = "reporter", + description = "generating", + descriptionDone = "done", + logfiles={ + 'doxygen.log': 'doxygen.log' + }, + command=[ + "sh", + "-x", + "tinderbox/www/doxygen.sh" + "reporter" + ], + haltOnFailure=True +)) + + ########## # BUILDERS ##########