This is the documentation for Bamboo 5.7. View this page for the

Unknown macro: {spacejump}

of Bamboo, or visit the latest Bamboo documentation.

計画の各ジョブについて、(オプションとして) そのジョブの各ビルドの後に、ジョブのビルド結果に自動的に適用されるラベルを指定できます。

Automatic labelling of job builds is built into Bamboo itself. There are a number of third-party plugin modules available that can provide additional 'post' actions (e.g. the Pre-Post Build Command plugin). You can also write your own plugins to provide additional post actions for a job. See the Bamboo Plugin Guide for further details.

Labels can also be applied to build results manually by Bamboo users.

On this page:

関連ページ

ジョブのビルド結果のラベルを指定する

ジョブのビルド結果のラベルを指定する方法は次のとおりです。

  1. Navigate to a job's configuration pages, as described on Configuring jobs.
  2. Click the Miscellaneous tab.
  3. [正規表現パターン] を使用してすると、次のいずれかが可能です。
    • Specify a regular expression to match content in the log files of this job's builds. Labels will be applied to a build of this job if this regular expression matches content in the build's log files (see the examples below).
      (info) For more information about regular expressions, please refer to the Java documentation on regular expression constructs.
    • このフィールドは空欄のままにして、このジョブのすべてのビルドにラベルを付けます。
  4. In the Labels field, type the word (or multiple words, separated by commas and/or spaces) with which the plan's build results are to be labelled.
  5. 保存をクリックします。

正規表現の例

See http://www.regular-expressions.info/reference.html for examples.

簡単な正規表現の例:

'There are \d+ results'

上記の正規表現で、「\d+」は 1 桁以上の任意の数字を表します。「\d」は "任意の桁" を意味し、「+」は "1 回以上" を意味します。組み合わせると、"1 桁以上の任意のシーケンス" を意味します。したがって、一致するものには次が含まれます。

  • "0 件の結果があります"
  • "123 件の結果があります"

複数のラベルが付いた正規表現の例:
Bamboo 1.2.1 以降では "グループのキャプチャ" を使用して、さまざまな目的に異なるラベルを作成できます。

たとえば、次の設定では、ビルド ログに "PERFORMANCE_IMPROVED" と表示されていれば "PERFORMANCE_IMPROVED" というラベルが付き、ビルド ログに "PERFORMANCE_DETERIORATED" と表示されていれば "PERFORMANCE_DETERIORATED" というラベルが付きます。両方の文字列がログに表示されている場合は、両方のラベルがビルドに適用されます。

  • "正規表現パターン" フィールドに次を入力します。

    (PERFORMANCE_IMPROVED|PERFORMANCE_DETERIORATED)
    
  • "ラベル" フィールドに次を入力します。

    \1