1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 10:46:02 +02:00

Trying to build more than one branch.

This commit is contained in:
Doug Schaefer 2003-10-27 21:17:45 +00:00
parent 64b4e87bb3
commit 1ac89011a2
2 changed files with 9 additions and 4 deletions

View file

@ -1,8 +1,11 @@
<?xml version="1.0"?>
<project name="CDT Build Bootstrap" default="main">
<property name="build.branch" value="2.0"/>
<property name="build.tag" value="HEAD"/>
<property name="build.server" value="update.eclipse.org"/>
<property name="build.remotedir" value="/home/www/tools/cdt/updates/builds/2.0"/>
<property name="build.remotedir" value="/home/www/tools/cdt/updates/builds/${build.branch}"/>
<!--property name="build.userid" value="userid on server"/-->
<!--property name="build.password" value="password on server"/-->

View file

@ -30,7 +30,7 @@
<!-- Download source from CVS -->
<xsl:for-each select="projects/plugin">
<cvs cvsroot=":pserver:anonymous@dev.eclipse.org:/home/tools" dest="build/plugins" quiet="true">
<cvs cvsroot=":pserver:anonymous@dev.eclipse.org:/home/tools" dest="build/plugins" quiet="true" tag="${{build.tag}}">
<xsl:attribute name="package">
<xsl:value-of select="@name"/>
</xsl:attribute>
@ -38,7 +38,7 @@
</xsl:for-each>
<xsl:for-each select="projects/feature">
<cvs cvsroot=":pserver:anonymous@dev.eclipse.org:/home/tools" dest="build/features" quiet="true">
<cvs cvsroot=":pserver:anonymous@dev.eclipse.org:/home/tools" dest="build/features" quiet="true" tag="${{build.tag}}">
<xsl:attribute name="package">
<xsl:value-of select="@name"/>
<xsl:text>-feature</xsl:text>
@ -251,7 +251,9 @@
<move file="s" tofile="site.xml"/>
<!-- Generate the site home page -->
<xslt in="site.xml" out="index.html" style="index.xsl"/>
<xslt in="site.xml" out="index.html" style="index.xsl">
<param name="branch" expression="${{build.branch}}"/>
</xslt>
</target>