You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2017/08/21 21:25:35 UTC

geode git commit: Don't download geode 1.2 every time a build runs

Repository: geode
Updated Branches:
  refs/heads/develop 6a17c9b1b -> d9394e39a


Don't download geode 1.2 every time a build runs

Setting the overwrite flag on the download tasks to false so that we
don't download the old version of geode for every build.

This closes #728


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

Branch: refs/heads/develop
Commit: d9394e39a3066890e1638d3518615c085496e1e1
Parents: 6a17c9b
Author: Dan Smith <up...@apache.org>
Authored: Mon Aug 21 13:30:22 2017 -0700
Committer: Dan Smith <up...@apache.org>
Committed: Mon Aug 21 14:24:26 2017 -0700

----------------------------------------------------------------------
 geode-old-versions/build.gradle | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/d9394e39/geode-old-versions/build.gradle
----------------------------------------------------------------------
diff --git a/geode-old-versions/build.gradle b/geode-old-versions/build.gradle
index 2e9257c..3b7c2e5 100644
--- a/geode-old-versions/build.gradle
+++ b/geode-old-versions/build.gradle
@@ -43,11 +43,13 @@ def addOldVersion(def source, def geodeVersion, def downloadInstall) {
   task "downloadZipFile${source}" (type: Download) {
     src "https://www.apache.org/dyn/closer.cgi?action=download&filename=geode/$geodeVersion/apache-geode-${geodeVersion}.tar.gz"
     dest new File(buildDir, "apache-geode-${geodeVersion}.tar.gz")
+    overwrite false
   }
 
   task "downloadSHA${source}" (type: Download) {
     src "https://www.apache.org/dist/geode/${geodeVersion}/apache-geode-${geodeVersion}.tar.gz.sha256"
     dest new File(buildDir, "apache-geode-${geodeVersion}.tar.gz.sha256")
+    overwrite false
   }