I am trying to use Hudson to do CI on a CVS repository but I receive the following error when I try to run the build:
Started by user admin [Pilot1] $ "C:\Program Files (x86)\CVS Suite\CVSNT\cvs.exe" -Q -z3 -d :sserver:login:_server:/CVSRepo co -P -d workspace -D "Thursday, March 3, 2011 2:20:08 PM UTC" ITitC/
cvs checkout: in directory .:
cvs checkout: cannot open CVS/Entries for reading: No such file or directory java.io.IOException: No such directory exists. Did you specify the correct branch? Perhaps you specified a tag: c:\ path\workspace
at hudson.scm.CVSSCM.archive(CVSSCM.java:474) at hudson.scm.CVSSCM.access$100(CVSSCM.java:123) at hudson.scm.CVSSCM$1.invoke(CVSSCM.java:381) at hudson.scm.CVSSCM$1.invoke(CVSSCM.java:374) at hudson.FilePath.act(FilePath.java:753)
I am able to successfully do an update if I remove the "ITitC" (the module) at the end of the command and run it directly through the cmd prompt. I was also able to quickly create a folder with that name inside of the "workspace" directory at the start of the Hudson build but it is deleted with each new build.
Is there a way I can force Hudson or CVSNT to create folders as needed either before each build or by default? Is this a problem with CVSNT? I'm not too attached to CVSNT and am willing to replace it with a better option.
:sserver:should look like this::sspi:user@server:/CVSRepo(note the @ instead of a colon). 2. The "ITitC" in your commandline is not a branch, it's the name of the module you're trying to checkout. If it is indeed the name of a branch then you should use-r ITitCinstead. You'd still need to specify the module you want to check out, though. If you want to checkout the entire repository, you can simply use "." (i.e. a single period character) as the module name. – Oliver Giesen Mar 4 '11 at 8:53:sserver:user@server:/CVSRepo– Oliver Giesen Mar 4 '11 at 10:17C:\Program Files (x86)\CVS Suite\CVSNT\cvs.exe -d :sserver:user@server:/CVSRepo co ITitC. Does that work? – Sagar Mar 4 '11 at 15:10