ビルドのフォーマットのような条件が STP_13_00_00_00_RC01 または STPMON_13_00_00_00_RC01 のようなものであるかどうかを入力する必要があります。perfix が STP の場合、小さなスクリプトを実行し、STP 以外の perfix の場合、スクリプトを実行して他のアクションを使用する必要はありません。私はこれを達成しますか?
ここで行っていることは、フォルダーを作成し、そのフォルダーに tar ファイルをコピーすることです。ここで、フォルダー名は STP または ACH で始まり、いくつかのパラメーターを指定してスクリプトを実行します。
<xsl:element name="mkdir">
<xsl:attribute name="dir">/mnt/projects/autoblds_dev_build/blds_dev_stp2build/${gbl.dist.label}</xsl:attribute>
</xsl:element>
<xsl:element name="copy">
<xsl:attribute name="file">${archive.base}/${gbl.dist.label}.tar.gz</xsl:attribute>
<xsl:attribute name="todir">/mnt/projects/autoblds_dev_build/blds_dev_stp2build/${gbl.dist.label}/</xsl:attribute>
<xsl:attribute name="overwrite">no</xsl:attribute>
</xsl:element>
<xsl:choose>
<xsl:when test="starts-with(Node, 'STP')">
<xsl:element name="mkdir">
<xsl:attribute name="dir">/mnt/projects/autoblds_dev_build/blds_dev_stp2build/${soa.release.version}</xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<!-- alternative action -->
</xsl:otherwise>
</xsl:choose>