Files
gtav-src/tools_ng/bin/CruiseControl/WebDashboard/doc/CCNET/Project Trigger.html
T
2025-09-29 00:52:08 +02:00

100 lines
6.3 KiB
HTML
Executable File

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>CruiseControl.NET : Project Trigger</title>
<link rel="stylesheet" href="styles/site.css" type="text/css" />
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<table class="pagecontent" border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffffff">
<tr>
<td valign="top" class="pagebody">
<div class="pageheader">
<span class="pagetitle">
CruiseControl.NET : Project Trigger
</span>
</div>
<div class="pagesubheading">
This page last changed on Jun 26, 2007 by <font color="#0050B2">rosspatterson</font>.
</div>
<p>The Project Trigger is used to trigger a build when the specified dependent project has completed its build. This trigger can help you split your build process across projects and servers. For example, you could have a CCNet project that will trigger the regression test suite once the main development build has completed successfully. This dependent build could be running on either a local or a remote CCNet server.</p>
<p>The Project Trigger works by using .NET remoting to poll the status of the dependent project. Whenever it detects that the dependent project has completed a build, the Project Trigger will fire. The Project Trigger can be configured to fire when the dependent project build succeeded, failed or threw an exception. In order to avoid hammering the remote project through polling, the Project Trigger is composed of an <a href="Interval Trigger.html" title="Interval Trigger">Interval Trigger</a> that will set a polling interval to 5 seconds. This inner trigger can be adjusted through changing the configuration.</p>
<h4><a name="ProjectTrigger-Examples"></a>Examples</h4>
<div class='panelMacro'><table class='infoMacro'><colgroup><col width='24'><col></colgroup><tr><td valign='top'><img src="images/icons/emoticons/information.gif" width="16" height="16" align="absmiddle" alt="" border="0"></td><td>NOTE: Like all triggers, the projectTrigger must be enclosed within a triggers element in the appropriate <a href="Project Configuration Block.html" title="Project Configuration Block">Project Configuration Block</a></td></tr></table></div>
<p>Minimalist example:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-xml"><span class="code-tag">&lt;projectTrigger project=<span class="code-quote">"Core"</span> /&gt;</span></pre>
</div></div>
<p>Full example:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-xml"><span class="code-tag">&lt;projectTrigger serverUri=<span class="code-quote">"tcp://server:21234/CruiseManager.rem"</span> project=<span class="code-quote">"Server"</span>&gt;</span>
<span class="code-tag">&lt;triggerStatus&gt;</span>Success<span class="code-tag">&lt;/triggerStatus&gt;</span>
<span class="code-tag">&lt;innerTrigger type=<span class="code-quote">"intervalTrigger"</span> seconds=<span class="code-quote">"30"</span> buildCondition=<span class="code-quote">"ForceBuild"</span>/&gt;</span>
<span class="code-tag">&lt;/projectTrigger&gt;</span></pre>
</div></div>
<h4><a name="ProjectTrigger-ConfigurationElements%3A"></a>Configuration Elements:</h4>
<table class='confluenceTable'><tbody>
<tr>
<th class='confluenceTh'> Node </th>
<th class='confluenceTh'> Description </th>
<th class='confluenceTh'> Type </th>
<th class='confluenceTh'> Required</th>
<th class='confluenceTh'> Default </th>
</tr>
<tr>
<td class='confluenceTd'> project </td>
<td class='confluenceTd'> The name of the dependent project to trigger a build from. </td>
<td class='confluenceTd'> string </td>
<td class='confluenceTd'> true </td>
<td class='confluenceTd'> N/A </td>
</tr>
<tr>
<td class='confluenceTd'> serverUri </td>
<td class='confluenceTd'> The URI for the CCNet server containing the dependent project. </td>
<td class='confluenceTd'> string </td>
<td class='confluenceTd'> false </td>
<td class='confluenceTd'> tcp://localhost:21234/CruiseManager.rem </td>
</tr>
<tr>
<td class='confluenceTd'> triggerStatus </td>
<td class='confluenceTd'> The status of the dependent project that will be used to trigger the build. For example, if this value is set to Success then a build will be triggered when the dependent project completes a successful build. Possible values are Success, Failure, Exception and Unknown. </td>
<td class='confluenceTd'> string </td>
<td class='confluenceTd'> false </td>
<td class='confluenceTd'> Success </td>
</tr>
<tr>
<td class='confluenceTd'> innerTrigger </td>
<td class='confluenceTd'> The trigger used to modulate the polling interval for the ProjectTrigger. By default, this is set to a ForceBuild IntervalTrigger that will cause <br/>
the trigger to check the status of the dependent project every 5 seconds </td>
<td class='confluenceTd'> trigger xml </td>
<td class='confluenceTd'> false </td>
<td class='confluenceTd'> 5-second ForceBuild IntervalTrigger </td>
</tr>
</tbody></table>
<p><img class="emoticon" src="images/icons/emoticons/warning.gif" height="16" width="16" align="absmiddle" alt="" border="0"/> There is currently a limitation in the Project Trigger in that it will always trigger a build when the inner trigger fires (at the end of the first interval for an Interval Trigger). This is because the Project Trigger has no way to save its state from a previous server run. So the last time that the build was triggered is not retrievable when the server restarts.</p>
<p>The Project Trigger is included in the CCNet 1.0 release and later.</p>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td height="12" background="http://confluence.public.thoughtworks.org//images/border/border_bottom.gif"><img src="images/border/spacer.gif" width="1" height="1" border="0"/></td>
</tr>
<tr>
<td align="center"><font color="grey">Document generated by Confluence on Mar 14, 2009 02:55</font></td>
</tr>
</table>
</body>
</html>