mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Added generation of the cdt-map file and a build.log file.
This commit is contained in:
parent
18e6359b5b
commit
a8e503869c
4 changed files with 21 additions and 3 deletions
|
@ -1,3 +1,5 @@
|
||||||
eclipse-SDK.zip
|
eclipse-SDK.zip
|
||||||
results
|
results
|
||||||
workspace
|
workspace
|
||||||
|
cdt-map.txt
|
||||||
|
build.log
|
||||||
|
|
|
@ -6,4 +6,4 @@ export PATH=$JAVA_HOME/bin:$PATH
|
||||||
|
|
||||||
cd `dirname $0`
|
cd `dirname $0`
|
||||||
|
|
||||||
java -cp ../../startup.jar org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner $*
|
java -cp ../../startup.jar org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner $* 2>&1 | tee build.log
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
<project default="zips">
|
<project default="zips">
|
||||||
|
|
||||||
<!--taskdef name="ftp" classname="org.apache.tools.ant.taskdefs.optional.net.FTP"/-->
|
|
||||||
|
|
||||||
<target name="build" depends="zips,test,updateSite"/>
|
<target name="build" depends="zips,test,updateSite"/>
|
||||||
<target name="nightly" depends="build,upload,mail"/>
|
<target name="nightly" depends="build,upload,mail"/>
|
||||||
|
<target name="integration" depends="nightly,wswbmap"/>
|
||||||
|
|
||||||
<target name="init">
|
<target name="init">
|
||||||
<touch file="${user.home}/.cvspass" />
|
<touch file="${user.home}/.cvspass" />
|
||||||
|
@ -99,6 +98,15 @@
|
||||||
</ftp>
|
</ftp>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="wswbmap" depends="init">
|
||||||
|
<copy file="cdt-map.in" tofile="cdt-map.txt" overwrite="true"/>
|
||||||
|
<replace file="cdt-map.txt" token="@buildId@" value="${buildId}"/>
|
||||||
|
<ftp server="update.eclipse.org" userid="${cdtuser}" password="${cdtpasswd}"
|
||||||
|
remotedir="/home/www/tools/cdt/wswb" action="put" verbose="yes">
|
||||||
|
<fileset file="cdt-map.txt"/>
|
||||||
|
</ftp>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="mail" depends="init">
|
<target name="mail" depends="init">
|
||||||
<mail subject="CDT Build ${siteversion}.${timestamp} completed"
|
<mail subject="CDT Build ${siteversion}.${timestamp} completed"
|
||||||
tolist="cdt-test-dev@eclipse.org" from="dschaefe@ca.ibm.com">
|
tolist="cdt-test-dev@eclipse.org" from="dschaefe@ca.ibm.com">
|
||||||
|
|
8
releng/org.eclipse.cdt.releng/cdt-map.in
Normal file
8
releng/org.eclipse.cdt.releng/cdt-map.in
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
org.eclipse.cdt-@buildId@-aix.motif.ppc.zip = http://download.eclipse.org/tools/cdt/updates/builds/2.0/zips/@buildId@/ | aix,motif,ppc | | runtime
|
||||||
|
org.eclipse.cdt-@buildId@-linux.gtk.x86.zip = http://download.eclipse.org/tools/cdt/updates/builds/2.0/zips/@buildId@/ | linux,gtk,x86 & linux,*,x86 | | runtime
|
||||||
|
org.eclipse.cdt-@buildId@-linux.motif.x86.zip = http://download.eclipse.org/tools/cdt/updates/builds/2.0/zips/@buildId@/ | linux,motif,x86 & linux,*,x86 | | runtime
|
||||||
|
org.eclipse.cdt-@buildId@-qnx.photon.x86.zip = http://download.eclipse.org/tools/cdt/updates/builds/2.0/zips/@buildId@/ | qnx,photon,x86 | | runtime
|
||||||
|
org.eclipse.cdt-@buildId@-solaris.motif.sparc.zip = http://download.eclipse.org/tools/cdt/updates/builds/2.0/zips/@buildId@/ | solaris,motif,sparc | | runtime
|
||||||
|
org.eclipse.cdt-@buildId@-win32.win32.x86.zip = http://download.eclipse.org/tools/cdt/updates/builds/2.0/zips/@buildId@/ | win32,win32,x86 | | runtime
|
||||||
|
org.eclipse.cdt.make-@buildId@.zip = http://download.eclipse.org/tools/cdt/updates/builds/2.0/zips/@buildId@/ | | | runtime
|
||||||
|
org.eclipse.cdt.managedbuilder-@buildId@.zip = http://download.eclipse.org/tools/cdt/updates/builds/2.0/zips/@buildId@/ | | | runtime
|
Loading…
Add table
Reference in a new issue