You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/03/12 05:36:41 UTC

[7/7] git commit: [flex-asjs] [refs/heads/develop] - don't cache nightly falcon build

don't cache nightly falcon build


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/e0597f0a
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/e0597f0a
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/e0597f0a

Branch: refs/heads/develop
Commit: e0597f0a9a578d82a941f46dba8c34f990216cc8
Parents: 686aa27
Author: Alex Harui <ah...@apache.org>
Authored: Tue Mar 11 21:34:54 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Mar 11 21:36:07 2014 -0700

----------------------------------------------------------------------
 installer.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/e0597f0a/installer.xml
----------------------------------------------------------------------
diff --git a/installer.xml b/installer.xml
index e5943a2..9b4233a 100644
--- a/installer.xml
+++ b/installer.xml
@@ -27,7 +27,7 @@
     <!-- local.d32 is set/used in build.properties so this needs to be done first. -->
     <condition property="local.d32" value="-d32">
         <and>
-            <os family="windows"/>
+            <os family="windows"/>  
             <equals arg1="${sun.arch.data.model}" arg2="64"/>
             <equals arg1="${os.arch}" arg2="x86_64"/>
             <equals arg1="${ant.java.version}" arg2="1.6"/>
@@ -51,6 +51,7 @@
     <property name="flex.url.path" value="http://archive.apache.org/dist/flex/${flex.sdk.version}/binaries" />
     <property name="flex.url.file" value="apache-flex-sdk-${flex.sdk.version}-bin.zip" />
 
+    <!-- don't forget to re-enable caching in the falcon-get task -->
     <property name="falcon.url.path" value="https://builds.apache.org/job/flex-falcon/lastSuccessfulBuild/artifact/out/" />
     <!--<property name="falcon.url.path" value="http://archive.apache.org/dist/flex/falcon/${falcon.version}/binaries" />-->
     <property name="falcon.url.file" value="apache-flex-falconjx-${falcon.version}-bin.zip" />
@@ -269,6 +270,7 @@
     <target name="falcon-get" depends="falcon-get-check" unless="falcon.downloaded" >
         <mkdir dir="${download.dir}"/>
         <echo>${INFO_INSTALLING_FALCON} ${falcon.url.path}/${falcon.url.file}</echo>
+        <property name="do-not-cache-next-get" value="true" />
         <get src="${falcon.url.path}/${falcon.url.file}"
         dest="${download.dir}/${falcon.url.file}"
         verbose="false"/>