Details:
(1) Source Control: Git
(2) Build Type: MSBuild
(3) System: Windows 7 Professional
Summary:
I am trying to get CruiseControl to automatically detect modifications
up on my private github repositories via the Git Source Control block.
During testing I would force the builds of different projects and the
builds return successful. When testing the git source control block
with a simple MSBUILD task, I am experiencing Warnings (highlighted
blue) from the source control block that are not helpful at all and
simply state "Source Control wrote output to stdderr". If the error is
thrown AFTER a successful fetch from github and build by ccnet,
sometimes a message will show in the webdashboard for cruisecontrol,
but I am now experiencing a warning as early as the git fetch command.
When the error comes at that time, I do not know where I can find what
the problem was. What is the _best_ way to debug the Git Source
Control block?
Config:
<sourcecontrol type="git">
<repository>[email protected]:andCulture/absorption_cpa.git</
repository>
<branch>development</branch>
<workingDirectory>C:\Clients\Absorption\absorption_cpa\</
workingDirectory>
<timeout>300000</timeout>
<autoGetSource>true</autoGetSource>
<executable>C:\Program Files (x86)\Git\cmd\git.cmd</
executable>
<tagOnSuccess>true</tagOnSuccess>
<tagCommitMessage>CIBuild {0}</tagCommitMessage>
<tagNameFormat>CIBuild-{0}</tagNameFormat>
<commitBuildModifications>true</commitBuildModifications>
<commitUntrackedFiles>true</commitUntrackedFiles>
<committerName>CIBuildServer(Winton)</committerName>
<committerEMail>[email protected]</committerEMail>
</sourcecontrol>