Custom zip filename in CSPECX [message #516199] |
Tue, 23 February 2010 02:52 |
Eclipse User |
|
|
|
Hi folks,
I finally got my RCP app to work with hudson and buckminster headless
It currently produces files such as:
mailapp-gtk.linux.x86.zip
mailapp-gtk.linux.x86_64.zip
mailapp-win32.win32.x86.zip
mailapp-win32.win32.x86_64.zip
Now I would like to extend the filename with the qualifier, i.e.
mailapp-201002230842-win32.win32.x86_64.zip
Is that possible? And if so, is there a reference available of what variables are supported in cspecx?
Thanks in advance!
Kind regards,
Philipp
<?xml version="1.0" encoding="UTF-8"?>
<cspecExtension
xmlns:com="http://www.eclipse.org/buckminster/Common-1.0"
xmlns="http://www.eclipse.org/buckminster/CSpec-1.0">
<actions>
<public name="create.product" actor="ant">
<actorProperties>
<property key="buildFile" value="build/product.ant"/>
<property key="targets" value="create.product"/>
</actorProperties>
<properties>
<property key="profile" value="XXXProfile"/>
<property key="iu" value="xxx.rcp.product"/>
</properties>
<prerequisites alias="repository">
<attribute name="site.p2"/>
</prerequisites>
<products alias="destination" base="${buckminster.output}">
<path path="xxx-${target.ws}.${target.os}.${target.arch}/"/>
</products>
</public>
<public name="create.product.zip" actor="ant">
<actorProperties>
<property key="buildFileId" value="buckminster.pdetasks"/>
<property key="targets" value="create.zip"/>
</actorProperties>
<prerequisites alias="action.requirements">
<attribute name="create.product"/>
</prerequisites>
<products alias="action.output" base="${buckminster.output}">
<path path="xxx-${target.ws}.${target.os}.${target.arch}.zip"/>
</products>
</public>
</actions>
</cspecExtension>
|
|
|
Powered by
FUDForum. Page generated in 0.04155 seconds