mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Updated for CDT 2.0.
This commit is contained in:
parent
a73f8d56fd
commit
db04e0e7f1
4 changed files with 293 additions and 286 deletions
|
@ -1,9 +1,8 @@
|
||||||
<?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.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/2.0"/>
|
||||||
<!--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"/-->
|
||||||
|
|
||||||
|
|
|
@ -6,19 +6,19 @@
|
||||||
<xsl:template match="/">
|
<xsl:template match="/">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>CDT 1.2 Build Page</title>
|
<title>CDT 2.0 Build Page</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h2>CDT 1.2 Build Page</h2>
|
<h2>CDT 2.0 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 3: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:
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
http://update.eclipse.org/tools/cdt/updates/builds/1.2
|
http://update.eclipse.org/tools/cdt/updates/builds/2.0
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
There is one category for each build. Expanding the
|
There is one category for each build. Expanding the
|
||||||
|
|
|
@ -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="0000"/>
|
||||||
|
</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">
|
||||||
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">
|
||||||
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>
|
||||||
|
@ -276,12 +275,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>
|
||||||
|
|
6
releng/org.eclipse.cdt.releng/message.txt
Normal file
6
releng/org.eclipse.cdt.releng/message.txt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
The build is available at
|
||||||
|
|
||||||
|
http://update.eclipse.org/tools/cdt/updates/builds/2.0
|
||||||
|
|
||||||
|
Cheers,
|
||||||
|
dschaefer2, the buildmaster...
|
Loading…
Add table
Reference in a new issue