Difference between revisions of "User:Minooz/RepoSyncProj"
(→Challenges) |
(→Challenges) |
||
Line 35: | Line 35: | ||
*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. | *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. | ||
*2- To run a bash script to build the project, there are 2 ways: | *2- To run a bash script to build the project, there are 2 ways: | ||
− | :Execute Windows Batch Command | + | :Execute Windows Batch Command: D:\cygwin\bin\bash /home/HudsonPrac/buildHudson.sh |
:Invoke an Ant Script | :Invoke an Ant Script | ||
<source lang=java> | <source lang=java> | ||
− | |||
<project name="assign1" basedir="."> | <project name="assign1" basedir="."> | ||
<target name="myTarget" > | <target name="myTarget" > | ||
Line 46: | Line 45: | ||
</target> | </target> | ||
</project> | </project> | ||
− | |||
</source> | </source> |
Revision as of 14:05, 19 October 2010
Contents
Repositories' Syncing
Version Control Tool
- comparing popular version control tools [1]
- Mercurial My notes on -> Min Mercurial
- CVS
- SVN
- Git
Continuous Integration System
- Comparing Different CI Systems -> CI Feature Matrix
- Hudson My notes on -> Min Hudson
- Cruise Control My notes on -> Min Cruise Control
- Buildbot My notes on -> Min Buildbot
- Apache Continuum
- Maven
- Anthill
Scripting
- A new ant script is created 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>
- 2- Bash My notes on -> Min Bash
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.
- 2- To run a bash script to build the project, there are 2 ways:
- Execute Windows Batch Command: D:\cygwin\bin\bash /home/HudsonPrac/buildHudson.sh
- Invoke an Ant Script
<project name="assign1" basedir=".">
<target name="myTarget" >
<exec executable="D:\cygwin\bin\bash" newenvironment="false">
<arg value="/home/HudsonPrac/buildHudson.sh"/>
</exec>
</target>
</project>