Difference between revisions of "User:Minooz/RepoSyncProj"

From CDOT Wiki
Jump to: navigation, search
(Repositories' Syncing Project)
(Scripting)
Line 18: Line 18:
 
==Scripting==
 
==Scripting==
 
# '''[http://ant.apache.org/manual/ Ant]'''  My notes on -> [[User:Minooz/RepoSyncProj/Ant | Min Ant]]
 
# '''[http://ant.apache.org/manual/ Ant]'''  My notes on -> [[User:Minooz/RepoSyncProj/Ant | Min Ant]]
 
+
:We can create a new ant script e.g. ''buildHudson.xml'' that triggers the target(assign1.test) of main build file(build.xml) of the project. See below:
 +
<source lang=java>
 +
<project name="assign1" basedir="." default="myTarget">
 +
  <target name="assign1.build.call">
 +
    <!-- Call the target that does everything -->
 +
    <ant antfile="build.xml" target="assign1.test"/>
 +
  </target>
 +
  <target name="myTarget.check" depends="assign1.build.call">
 +
    <echo>The assign1.build was called!</echo>
 +
  </target>
 +
</project>
 +
</source>
  
 
==Challenges==
 
==Challenges==
 
# I was receiving an error message while trying to do a new build on Hudson. It didn't let to clone the project on Hudson workspace. The error message is "Access is denied". So I had to delete the project and create a new one. Apparently one of the reasons is that Hudson doesn't let you queue the jobs. So, if you interrupt a job that is scheduled, you'll get the error message.
 
# I was receiving an error message while trying to do a new build on Hudson. It didn't let to clone the project on Hudson workspace. The error message is "Access is denied". So I had to delete the project and create a new one. Apparently one of the reasons is that Hudson doesn't let you queue the jobs. So, if you interrupt a job that is scheduled, you'll get the error message.

Revision as of 13:19, 15 October 2010

Repositories' Syncing

Version Control Tool

  • comparing popular version control tools [1]
  1. Mercurial My notes on -> Min Mercurial
  2. CVS
  3. SVN
  4. Git

Continuous Integration System

  1. Hudson My notes on -> Min Hudson
  2. Cruise Control My notes on -> Min Cruise Control
  3. Buildbot My notes on -> Min Buildbot
  4. Apache Continuum
  5. Maven
  6. Anthill

Scripting

  1. Ant My notes on -> Min Ant
We can create a new ant script e.g. buildHudson.xml that triggers the target(assign1.test) of main build file(build.xml) of the project. See below:
<project name="assign1" basedir="." default="myTarget">
  <target name="assign1.build.call">
    <!-- Call the target that does everything -->
    <ant antfile="build.xml" target="assign1.test"/>
   </target>
  <target name="myTarget.check" depends="assign1.build.call">
    <echo>The assign1.build was called!</echo>
  </target>
</project>

Challenges

  1. I was receiving an error message while trying to do a new build on Hudson. It didn't let to clone the project on Hudson workspace. The error message is "Access is denied". So I had to delete the project and create a new one. Apparently one of the reasons is that Hudson doesn't let you queue the jobs. So, if you interrupt a job that is scheduled, you'll get the error message.