workitems are part of VSTS, there is no any concept for workitems in other source control systems the Microsft TFS.
The most easiest way to set up complete Continous Integration CI system would be:
svn-1.4.6-setup.exe
Install Subversion to D:\SVN
Create source control repository:
D:\SVN\bin>svnadmin create D:\SVN\repos
Add your source to SVN:
D:\SVN\bin>svn import D:\webroot file:///d:/SVN/repos/webroot -m "initial import"
This will import D:\webroot and all subdirectories into the repository in the subdirectory "webroot", for more datils how to set up SVN as a service: http://martin-lindhes.blogspot.com/2006/09/how-to-run-subversion-140-in-windows.html
Allow all access open svn config file:
D:\svn\repos\conf\svnserve.conf
Uncomment (remove /#):
auth-access = write
You should have the source control server running with access allowed to all. Note you cannot track who is changing the code this way, for more comlex scenarios google: subversion role access
How to get the source code in 3 steps:
Please install source control client from here:
tortoisesvn.net/downloads
Then create empty directory where you want to have the code checked out, for example C:\code\source
Right click C:\code\source directory and chose "SVN Checkout", provide for repository URL:
svn://yourserver.com:48000/webroot
and choose all other are default options.
Click ok and you will have the latest code.
Download and Install CruiseControl: sourceforge.net/projects/ccnet/
Open CC config file:
C:\Program Files\CruiseControl.NET\server\ccnet.config
here is some sample config:
<cruisecontrol>
<project name="eSeismic CI build and Test System">
<sourcecontrol type="svn">
<trunkUrl>svn://yourserver.com:48000/webroot</trunkUrl>
<workingDirectory>c:\dev\ccnet</workingDirectory>
</sourcecontrol>
<triggers>
<intervalTrigger seconds="3600" />
</triggers>
<tasks>
<devenv>
<solutionfile>C:\Code\source\SomeSolutionNameHere.sln</solutionfile>
<configuration>Debug</configuration>
<buildtype>Build</buildtype>
<executable>C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\devenv.com</executable>
<buildTimeoutSeconds>60</buildTimeoutSeconds>
</devenv>
<nunit path="C:\nunit\bin\nunit-console.exe">
<assemblies>
<assembly>C:\someproject...\bin\Debug\someunittestdll....Test.dll</assembly>
</assemblies>
</nunit>
</tasks>
<publishers>
<statistics />
<xmllogger />
</publishers>
</project>
</cruisecontrol>
Any issues read the help: ccnet.sourceforge.net/CCNET/
I assume you use Nunit to testing.
Simples.