0

In buildbot's waterfall page, the buttons show the status of each build step. If the step runs, it simply shows 'Ran'. I want to edit this to give better info to the user. Where can I add this change from?

277roshan
  • 354
  • 1
  • 3
  • 13

1 Answers1

1

From the documentation of buidlbot 8.12, the keyword parameters of all buildsteps include:-

description

This will be used to describe the command (on the Waterfall display) while the command is still running. It should be a single imperfect-tense verb, like compiling or testing. The preferred form is a list of short strings, which allows the HTML displays to create narrower columns by emitting a
tag between each word. You may also provide a single string.

descriptionDone

This will be used to describe the command once it has finished. A simple noun like compile or tests should be used. Like description, this may either be a list of short strings or a single string.

In the python definitions of your buildsteps, you should set the descriptionDone keyword parameter to an appropriate description for the completion of each buildstep.

Community
  • 1
  • 1
Mike Kinghan
  • 55,740
  • 12
  • 153
  • 182
  • I tried adding descriptionDone=["Completed"] to the buildstep, but it produced error. – 277roshan Jul 13 '15 at 18:45
  • You would need to post the code of a buildstep that produces the error, and also the python backtrace of the error, to enable anyone to help further. – Mike Kinghan Jul 13 '15 at 18:51