You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/05/24 11:24:44 UTC

git commit: [flex-sdk] [refs/heads/develop] - - typos - 11.7 support - we want the Jenkins job to always run as cleanly as possible so issues with third party downloads are not covered by the persistence of older artefacts: added 'clean' target to 'main

Updated Branches:
  refs/heads/develop 0e98aca75 -> 5eae818fc


- typos
- 11.7 support
-  we want the Jenkins job to always run as cleanly as possible so issues with third party downloads are not covered by the persistence of older artefacts: added 'clean' target to 'main'

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


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

Branch: refs/heads/develop
Commit: 5eae818fc1f2c95bd09ebec1323bd5ef99baedbe
Parents: 0e98aca
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Fri May 24 11:24:17 2013 +0200
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Fri May 24 11:24:27 2013 +0200

----------------------------------------------------------------------
 jenkins.xml |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5eae818f/jenkins.xml
----------------------------------------------------------------------
diff --git a/jenkins.xml b/jenkins.xml
index 32984db..00fcd41 100644
--- a/jenkins.xml
+++ b/jenkins.xml
@@ -21,10 +21,10 @@
 <project name="framework" default="main" basedir=".">
     <property name="FLEX_HOME" value="${basedir}"/>
 	
-	<!-- Set plyerglobal.version and locale -->
+	<!-- Set playerglobal.version and locale -->
 	<loadproperties srcFile="${FLEX_HOME}/build.properties"/>
 
-    <target name="main" depends="thirdparty-downloads"/>
+    <target name="main" depends="clean,thirdparty-downloads"/>
     
     <target name="thirdparty-downloads" depends="airsdk-download,playerglobal-download" description="Copies required downloads into place for build" />
     
@@ -54,7 +54,7 @@
     </target>
 
     <!-- playerglobal.swc -->
-    <!-- Because this requires a network connection it copies playglobal.swc only if it doesn't already exist. -->	
+    <!-- Because this requires a network connection it copies playerglobal.swc only if it doesn't already exist. -->	
 	<target name="playerglobal-download" depends="playerglobal-check,playerglobal-settarget,playerglobal10.2-download,playerglobal10.3-download,playerglobal11.0-download,playerglobal11.1-download,playerglobal11.2-download,playerglobal11.3-download,playerglobal11.4-download,playerglobal11.5-download,playerglobal11.6-download" description="Copies playerglobal.swc from the Adobe website">
     </target>
 	
@@ -86,6 +86,9 @@
 		<condition property="target11.6">
 			<equals arg1="${playerglobal.version}" arg2="11.6" />
 		</condition>
+		<condition property="target11.7">
+			<equals arg1="${playerglobal.version}" arg2="11.7" />
+		</condition>
 	 </target>
 
     <target name="playerglobal10.2-download" if="target10.2">
@@ -150,6 +153,13 @@
             dest="${basedir}/lib/player/${playerglobal.version}/playerglobal.swc" 
             verbose="false"/>
     </target>
+	
+    <target name="playerglobal11.7-download" if="target11.7">
+    	<mkdir dir="${basedir}/lib/player/${playerglobal.version}"/>
+        <get src="http://download.macromedia.com/pub/flashplayer/updaters/11/playerglobal11_7.swc" 
+            dest="${basedir}/lib/player/${playerglobal.version}/playerglobal.swc" 
+            verbose="false"/>
+    </target>
 
     <target name="clean" description="Cleans third party downloaded files.">
     	<delete dir="${FLEX_HOME}/temp" />