0

ビルド結果にコメントを追加したい。たとえば、ビルドが失敗した理由を追加します。

cc.net にはこの機能がありますか?

このためにサーバーをセットアップするにはどうすればよいですか?

4

2 に答える 2

0

No, there's no in built feature to pause the build to accept a failure reason, or any other input, is provided.

You could:

  1. Provide a build reason on the next build, e.g. "fixing previous build..."
    • This would use the askForABuildReason project configuration, however I'm not sure how well supported it is in the webdashboard/cctray.
  2. If possible proved a more descriptive reason for the failure, e.g. a task which detects the number of test failures and adds it to the build log.
    • You could then add a control to the webdashboard to show this.

Although its retrospective I'm guessing that (1) would give you the most flexibility, in that you can enter a customized message.

Hope that helps.

于 2012-06-10T08:03:46.520 に答える
0

ユーザー入力を取得するメカニズムはありますが、この場合はお勧めしません。壊れてから数時間後に既存のビルドを更新したい場合は、ビルド ログ ファイルを編集して BuildFailureComment タグを追加することができます。そのファイルは単なるxmlです。視覚化のために、xsl ファイルの 1 つを更新できます。

この機能を含めたい場合は、Issue Request を開くことをお勧めします。

于 2012-06-11T04:35:06.413 に答える