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 2015/01/04 12:43:03 UTC

git commit: [flex-sdk] [refs/heads/develop] - Always write out last run versions

Repository: flex-sdk
Updated Branches:
  refs/heads/develop 078fb9577 -> 0b1bc2ade


Always write out last run versions

The 'old' way would run the failing run's version over and over until it was fixed. I switched it to always increment the version for the next run, so we get a clearer picture if it is only one version of FP that is causing failures.

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/0b1bc2ad
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/0b1bc2ad
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/0b1bc2ad

Branch: refs/heads/develop
Commit: 0b1bc2ade97792567df027280bea2a7ea8dbb5e3
Parents: 078fb95
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Sun Jan 4 12:42:09 2015 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Sun Jan 4 12:42:50 2015 +0100

----------------------------------------------------------------------
 mustella/jenkins.sh | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/0b1bc2ad/mustella/jenkins.sh
----------------------------------------------------------------------
diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh
index 7757ac5..209bef7 100755
--- a/mustella/jenkins.sh
+++ b/mustella/jenkins.sh
@@ -275,13 +275,15 @@ END
 
 
 
+# write 'used' values to 'versions.txt' to allow 
+cat > $VERSIONS_FILE <<END 
+FLASH_VERSION=$FLASH_VERSION
+AIR_VERSION=$AIR_VERSION
+END
+
+
+
 if ! $SUCCESS
 then
   exit 1
-else
-  # write 'used' values to 'versions' file upon success
-  cat > $VERSIONS_FILE <<END 
-  FLASH_VERSION=$FLASH_VERSION
-  AIR_VERSION=$AIR_VERSION
-END
 fi