- create separate hudson platform install target, copying the file instead of downloading from googlecode

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7252 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
nor..67 14 years ago
parent 45ae22e356
commit 5d90627942
  1. 7
      build.xml

@ -49,6 +49,13 @@
<ant dir="sdk" target="hudson-nightly"/>
</target>
<target name="update-platform-hudson" description="Updates the base platform to the latest available build" depends="-remove-platform">
<copy file="/var/www/com/platform/base/alpha/platform-base.zip" todir="./"/>
<unzip src="platform-base.zip" dest="./"/>
<antcall target="-update-sdk-platform-config"/>
<delete file="platform-base.zip"/>
</target>
<target name="-check-platform" depends="-check-platform-present" unless="platform.present">
<echo message="Downloading base platform, this only has to be done once."/>
<get src="http://jmonkeyengine.googlecode.com/files/platform-base.zip" dest="./" skipexisting="true"/>

Loading…
Cancel
Save