1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-28 02:33:18 +02:00

Revived the 1.2 builds.

This commit is contained in:
Doug Schaefer 2003-10-27 21:42:05 +00:00
parent c94898ad2b
commit b046eac006
4 changed files with 291 additions and 286 deletions

View file

@ -1,9 +1,11 @@
<?xml version="1.0"?>
<project name="CDT Build Bootstrap" default="main">
<property name="build.version" value="1.2.0"/>
<property name="build.branch" value="1.2"/>
<property name="build.tag" value="cdt_1_2"/>
<property name="build.server" value="update.eclipse.org"/>
<property name="build.remotedir" value="/home/www/tools/cdt/updates/builds/1.2"/>
<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

@ -11,8 +11,8 @@
<body>
<h2>CDT 1.2 Build Page</h2>
<p>
The nightly builds are currently run every weeknight,
Monday to Friday at 3:00 a.m. EDT/EST.
The nightly builds are currently run twice a week
Monday and Thursday at 4:00 a.m. EDT/EST.
To get download and install the builds, add the following
as a site bookmark in Eclipse's Update Manager perspective:
@ -36,8 +36,7 @@
</p>
<h3>Builds</h3>
<p>
The builds are currently being run every weeknight. The
reports from the automated build verification test suites
The reports from the automated build verification test suites
are linked below.
</p>
<ul>

View file

@ -17,7 +17,10 @@
<include name="build.number"/>
</fileset>
</ftp>
<buildnumber/>
<propertyfile file="build.number">
<entry key="build.number" type="int" default="0" operation="+" pattern="00"/>
</propertyfile>
<property file="build.number"/>
<echo message="Build number: ${{build.version}}.${{build.number}}"/>
<delete dir="build"/>
<unzip src="zips/eclipse-SDK-2.1.1-linux-gtk.zip" dest="."/>
@ -27,9 +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>
@ -37,9 +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>
@ -252,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>
@ -276,12 +277,15 @@
<target name="mail">
<mail from="dschaefe@ca.ibm.com"
tolist="cdt-test-dev@eclipse.org"
subject="CDT Build ${{build.version}}.${{build.number}} completed"
message="This has been an automated message"/>
subject="CDT Build ${{build.version}}.${{build.number}} completed">
<message src="message.txt"/>
</mail>
</target>
<target name="all" depends="build,upload,mail"/>
</project>
</xsl:template>
</xsl:transform>

View file

@ -1,6 +1,6 @@
The build is available at
http://update.eclipse.org/tools/cdt/updates/builds/2.0
http://update.eclipse.org/tools/cdt/updates/builds/1.2
Cheers,
dschaefer2, the buildmaster...