mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-28 10:43:31 +02:00
Revived the 1.2 builds.
This commit is contained in:
parent
c94898ad2b
commit
b046eac006
4 changed files with 291 additions and 286 deletions
|
@ -1,9 +1,11 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<project name="CDT Build Bootstrap" default="main">
|
<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.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.userid" value="userid on server"/-->
|
||||||
<!--property name="build.password" value="password on server"/-->
|
<!--property name="build.password" value="password on server"/-->
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
<body>
|
<body>
|
||||||
<h2>CDT 1.2 Build Page</h2>
|
<h2>CDT 1.2 Build Page</h2>
|
||||||
<p>
|
<p>
|
||||||
The nightly builds are currently run every weeknight,
|
The nightly builds are currently run twice a week
|
||||||
Monday to Friday at 3:00 a.m. EDT/EST.
|
Monday and Thursday at 4:00 a.m. EDT/EST.
|
||||||
|
|
||||||
To get download and install the builds, add the following
|
To get download and install the builds, add the following
|
||||||
as a site bookmark in Eclipse's Update Manager perspective:
|
as a site bookmark in Eclipse's Update Manager perspective:
|
||||||
|
@ -36,8 +36,7 @@
|
||||||
</p>
|
</p>
|
||||||
<h3>Builds</h3>
|
<h3>Builds</h3>
|
||||||
<p>
|
<p>
|
||||||
The builds are currently being run every weeknight. The
|
The reports from the automated build verification test suites
|
||||||
reports from the automated build verification test suites
|
|
||||||
are linked below.
|
are linked below.
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
@ -17,7 +17,10 @@
|
||||||
<include name="build.number"/>
|
<include name="build.number"/>
|
||||||
</fileset>
|
</fileset>
|
||||||
</ftp>
|
</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}}"/>
|
<echo message="Build number: ${{build.version}}.${{build.number}}"/>
|
||||||
<delete dir="build"/>
|
<delete dir="build"/>
|
||||||
<unzip src="zips/eclipse-SDK-2.1.1-linux-gtk.zip" dest="."/>
|
<unzip src="zips/eclipse-SDK-2.1.1-linux-gtk.zip" dest="."/>
|
||||||
|
@ -27,9 +30,7 @@
|
||||||
|
|
||||||
<!-- Download source from CVS -->
|
<!-- Download source from CVS -->
|
||||||
<xsl:for-each select="projects/plugin">
|
<xsl:for-each select="projects/plugin">
|
||||||
<cvs
|
<cvs cvsroot=":pserver:anonymous@dev.eclipse.org:/home/tools" dest="build/plugins" quiet="true" tag="${{build.tag}}">
|
||||||
cvsroot=":pserver:anonymous@dev.eclipse.org:/home/tools"
|
|
||||||
dest="build/plugins" quiet="true">
|
|
||||||
<xsl:attribute name="package">
|
<xsl:attribute name="package">
|
||||||
<xsl:value-of select="@name"/>
|
<xsl:value-of select="@name"/>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
|
@ -37,9 +38,7 @@
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
|
|
||||||
<xsl:for-each select="projects/feature">
|
<xsl:for-each select="projects/feature">
|
||||||
<cvs
|
<cvs cvsroot=":pserver:anonymous@dev.eclipse.org:/home/tools" dest="build/features" quiet="true" tag="${{build.tag}}">
|
||||||
cvsroot=":pserver:anonymous@dev.eclipse.org:/home/tools"
|
|
||||||
dest="build/features" quiet="true">
|
|
||||||
<xsl:attribute name="package">
|
<xsl:attribute name="package">
|
||||||
<xsl:value-of select="@name"/>
|
<xsl:value-of select="@name"/>
|
||||||
<xsl:text>-feature</xsl:text>
|
<xsl:text>-feature</xsl:text>
|
||||||
|
@ -252,7 +251,9 @@
|
||||||
<move file="s" tofile="site.xml"/>
|
<move file="s" tofile="site.xml"/>
|
||||||
|
|
||||||
<!-- Generate the site home page -->
|
<!-- 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>
|
</target>
|
||||||
|
|
||||||
|
@ -276,12 +277,15 @@
|
||||||
<target name="mail">
|
<target name="mail">
|
||||||
<mail from="dschaefe@ca.ibm.com"
|
<mail from="dschaefe@ca.ibm.com"
|
||||||
tolist="cdt-test-dev@eclipse.org"
|
tolist="cdt-test-dev@eclipse.org"
|
||||||
subject="CDT Build ${{build.version}}.${{build.number}} completed"
|
subject="CDT Build ${{build.version}}.${{build.number}} completed">
|
||||||
message="This has been an automated message"/>
|
<message src="message.txt"/>
|
||||||
|
</mail>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="all" depends="build,upload,mail"/>
|
<target name="all" depends="build,upload,mail"/>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
</xsl:transform>
|
</xsl:transform>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
The build is available at
|
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,
|
Cheers,
|
||||||
dschaefer2, the buildmaster...
|
dschaefer2, the buildmaster...
|
||||||
|
|
Loading…
Add table
Reference in a new issue