forked from martijnboland/RavenDBMembership
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ccnet.config.xml
46 lines (38 loc) · 1.92 KB
/
ccnet.config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!--
This config file must be referenced by the CI server's config file.
See "Splitting the ccnet.config file to add this config: http://ccnetlive.thoughtworks.com/ccnet/doc/CCNET/Multiple%20Projects.html
-->
<!-- make sure cruisecontrol config defines git install location, something like:
<cb:define gitpath="C:\Program Files (x86)\Git\bin\git.exe"/>
-->
<project name="RavenDBMembership">
<sourcecontrol type="git">
<repository>git://github.com/fschwiet/RavenDBMembership.git</repository>
<branch>master</branch>
<autoGetSource>true</autoGetSource>
<executable>$(gitpath)</executable>
<tagOnSuccess>false</tagOnSuccess>
<commitBuildModifications>false</commitBuildModifications>
<commitUntrackedFiles>false</commitUntrackedFiles>
<workingDirectory>c:\build\RavenDBMembership.git</workingDirectory>
<timeout>60000</timeout>
</sourcecontrol>
<triggers>
<intervalTrigger name="git" seconds="3600" buildCondition="IfModificationExists" />
</triggers>
<tasks>
<powershell>
<!-- http://ccnetlive.thoughtworks.com/ccnet/doc/CCNET/PowerShell%20Task.html -->
<script>psake.ps1</script>
<scriptsDirectory>c:\build\RavenDBMembership.git</scriptsDirectory>
<executable>powershell.exe</executable>
<buildArgs>.\default.ps1 -properties @{
buildDirectory = 'c:\build\RavenDBMembership.msbuild\';
tempPath = 'c:\build\RavenDBMembership.TestDatabases';
sqlConnectionString = 'Database=''master'';Data Source=.;User Id=testusersdeletesyourdata;Password=1Password0;'
}</buildArgs>
<successExitCodes>0</successExitCodes> <!-- via powershell, $LastExitCode -->
<description>Commit check</description>
</powershell>
</tasks>
</project>