BuildListener is already very good with the current functions. But I want to add a few other things.
Current:
...
void buildFinished();
void buildRecommended();
void buildUnRecommended();
Update:
...
void buildFinished();
void buildRecommended();
void buildUnRecommended();
boolean recommendBuild();
boolean unRecommendBuild();
There are several things that need to be done at the same time when a build is recommended and unrecommended. i am using "void buildRecommended();" for that. However, it always returns void and when an error occurs, the build status is still changed to recommended while in fact the related tasks have failed.
@robinshen Can this be applied?