Reputation: 1745
Using CruiseControl.Net build server. I have a cc.net project that uses a SVN trigger. During the build I would like to have the svn revision message for the changes that triggered the build.
Is it possible to get this ? I know CruiseControl is aware of this message as it is in the publish emails.
I am currently only using CruiseControl.Net. If this can be achieved using something like Nant, that would be fine.
Purpose : The result of the build is a single dll that the build commits to svn. This message will be used as the commit message
Upvotes: 2
Views: 259
Reputation: 1498
Just enable the Modification History Project Plugin in the WebDashboard and you'll see the messages of each change since the last integration.
Update
Then maybe the Modification Reader Task could help.
It also depends on your client. Do you have the Modification History Publisher enabled? It write the modifications into the build log. With this information any client could read them like the Webdashboard does with the Modification History Project Plugin.
Upvotes: 1