2

私は CCNet バージョン 1.4 で作業していますが、きれいな方法で定義したいパラメーターを取得するのに苦労しています。私の例では、合計 6 つのプロジェクト (2 つのブランチに 3 つのソリューション) が必要です。私は、8 つの変数の選択に基づいて 6 つの可能性をすべて組み込むことができる一般的なプロジェクトを定義しました。トランク プロジェクトの場合、変数のうち 4 つを 1 つにする必要があります。ブランチ プロジェクトの場合、4 つの変数は別のものになるはずです。他の 4 つの変数は、構築するソリューションによって異なります。

以下の試みでは、4 つのトランク変数を 1 つの定義ブロックに配置し、4 つのリリース変数を別のブロックに配置しました。また、各ソリューションの定義ブロックもあります。

<cb:define name="ProductBuildProject">
  <project name="$(ProjectName)" queue="Common">
    <category>Main Builds</category>
    <sourcecontrol type="multi">
      <sourceControls>
        <cb:svn-sourcebuild-checkout BranchPath="$(BranchPath)" MainSourcePath="$(MainSourcePath)"  />
      </sourceControls>
    </sourcecontrol>
    <modificationDelaySeconds>10</modificationDelaySeconds>
    <labeller type="defaultlabeller">
      <prefix><cb:LabelPrefix/></prefix>
      <incrementOnFailure>true</incrementOnFailure>
    </labeller>
    <triggers>
      <intervalTrigger name="continuous" seconds="900" buildCondition="IfModificationExists"/>
    </triggers>
    <tasks>
      <nant>
        <executable>&nant-path;</executable>
        <baseDirectory><cb:LocalKeywordLabPath/>\<cb:MainSourcePath/></baseDirectory>
        <buildArgs>-v -D:deployServer=<cb:DeployServer/></buildArgs>
        <buildFile><cb:BuildFileName/></buildFile>
        <targetList>
          <target><cb:BuildTargetName/></target>
        </targetList>
        <buildTimeoutSeconds>600</buildTimeoutSeconds>
      </nant>
    </tasks>
    <publishers>
      <merge>
        <files>
          <file><cb:LocalKeywordLabPath/>\<cb:MainSourcePath/>\<cb:UnitTestOutputPath/></file>
        </files>
      </merge>
      &publishers-common-block;
    </publishers>
    <externalLinks/>
  </project>
</cb:define>

<cb:define name="TrunkBuildParameters">
  <cb:define name="LocalKeywordLabPath"><cb:keywordlab-trunk-local/></cb:define>
  <cb:define name="BranchPath"><cb:trunk-path/></cb:define>
  <cb:define name="LabelPrefix">1.1.0.</cb:define>
  <cb:define name="DeployServer">smwtlkwlab01n</cb:define>
</cb:define>

<cb:define name="ReleaseBranchBuildParameters">
  <cb:define name="LocalKeywordLabPath"><cb:keywordlab-release-local/></cb:define>
  <cb:define name="BranchPath"><cb:releaseBranch-path/></cb:define>
  <cb:define name="LabelPrefix">1.1.100.</cb:define>
  <cb:define name="DeployServer">smwdvkwlab03n</cb:define>
</cb:define>

<cb:define name="KeywordLabWebParameters">
  <cb:define name="MainSourcePath">Source\Presentation</cb:define>
  <cb:define name="BuildFileName">KeywordLab.Web.build</cb:define>
  <cb:define name="BuildTargetName">automated-with-webdeploy</cb:define>
  <cb:define name="UnitTestOutputPath">KeywordLab.Web.UnitTest\bin\Release\KeywordLab.Web.UnitTest.trx</cb:define>
</cb:define>

<cb:define name="KeywordLabWebMvcParameters">
  <cb:define name="MainSourcePath">Source\UI</cb:define>
  <cb:define name="BuildFileName">KeywordLab.Web.Mvc.build</cb:define>
  <cb:define name="BuildTargetName">automated-with-webdeploy</cb:define>
  <cb:define name="UnitTestOutputPath">KeywordLab.Web.Mvc.Tests\bin\Release\KeywordLab.Web.Mvc.Tests.trx</cb:define>
</cb:define>

<cb:define name="KeywordLabServiceParameters">
  <cb:define name="MainSourcePath">Source\Service</cb:define>
  <cb:define name="BuildFileName">KeywordLab.build</cb:define>
  <cb:define name="BuildTargetName">automated</cb:define>
  <cb:define name="UnitTestOutputPath">KeywordLab.UnitTest\bin\Release\KeywordLab.UnitTest.trx</cb:define>
</cb:define>

最後に、トランクまたはリリース ビルドの定義ブロックとソリューションの正しい定義ブロックを参照して、6 つのプロジェクトをそれぞれ定義しようとします。

<!--KeywordLab Web-->
<cb:ProductBuildProject>
  <cb:define name="ProjectName">KeywordLab Web (1N)</cb:define>
  <cb:TrunkBuildParameters/>
  <cb:KeywordLabWebParameters/>
</cb:ProductBuildProject>

<!--KeywordLab Web Mvc-->
<cb:ProductBuildProject>
  <cb:define name="ProjectName">KeywordLab Web Mvc (1N)</cb:define>
  <cb:TrunkBuildParameters/>
  <cb:KeywordLabWebMvcParameters/>
</cb:ProductBuildProject>

<!--KeywordLab Service-->
<cb:ProductBuildProject>
  <cb:define name="ProjectName">KeywordLab Service (1N)</cb:define>
  <cb:TrunkBuildParameters/>
  <cb:KeywordLabServiceParameters/>
</cb:ProductBuildProject>

<!--KeywordLab Web-->
<cb:ProductBuildProject>
  <cb:define name="ProjectName">Release Branch (3N) - KeywordLab Web</cb:define>
  <cb:ReleaseBranchBuildParameters/>
  <cb:KeywordLabWebParameters/>
</cb:ProductBuildProject>

<!--KeywordLab Web Mvc-->
<cb:ProductBuildProject>
  <cb:define name="ProjectName">Release Branch (3N) - KeywordLab Web Mvc</cb:define>
  <cb:ReleaseBranchBuildParameters/>
  <cb:KeywordLabWebMvcParameters/>
</cb:ProductBuildProject>

<!--KeywordLab Service-->
<cb:ProductBuildProject>
  <cb:define name="ProjectName">Release Branch (3N) - KeywordLab Service</cb:define>
  <cb:ReleaseBranchBuildParameters/>
  <cb:KeywordLabServiceParameters/>
</cb:ProductBuildProject>

これは機能していません。誰かが私が間違っていることを指摘できることを願っています。この構成を読み込もうとすると、次のエラーが表示されます。

[CCNet Server:ERROR] INTERNAL ERROR: Reference to unknown symbol LabelPrefix

TrunkBuildParameters と ReleaseBranchBuildParameters でわかるように、両方で LabelPrefix を定義し、6 つのプロジェクトすべてがこれらの定義ブロックのいずれかを参照しています。次に、プロジェクトのブロックでこれを参照しようとします。これは、プロジェクトで使用する変数を定義する有効な方法ではないようです。誰かが私が間違っていること、またはこれを行うためのより良い方法を教えてもらえますか?

4

1 に答える 1

0

クルーズコントロールに付属の Validator を使用して、最終的に解析された構成ファイルが何であるかを確認し、何か見逃していないかどうかを確認することをお勧めします。

そうは言っても、私が通常行うことは逆です。一般的に使用される構成ブロックを定義してから、数行だけでプロジェクト構成を書き出します。おそらく、あなたはそれを十分にきれいだと考えるでしょうか?

于 2013-05-02T09:38:46.210 に答える