You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by on...@apache.org on 2021/06/30 23:55:04 UTC

[geode] branch support/1.12 updated: [GEODE-9386] Fix windows builder cleanup (#6630)

This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.12 by this push:
     new 7f28bf6  [GEODE-9386] Fix windows builder cleanup (#6630)
7f28bf6 is described below

commit 7f28bf6fa7302ffa9a6a9b3126e01566803b86d8
Author: Sean Goller <se...@goller.net>
AuthorDate: Mon Jun 21 08:44:57 2021 -0700

    [GEODE-9386] Fix windows builder cleanup (#6630)
    
    * Do './gradlew.bat clean' before C:/geode.
    
    (cherry picked from commit ecaf313a6747cf0c465b5cd5852a2304b753919c)
    (cherry picked from commit 63a0fe7148124912522cd4d1e3f2984993b0aea6)
    (cherry picked from commit 0cd41073d0a5e40e5eea98a4d7ee534307b474aa)
---
 ci/images/google-windows-geode-builder/packer.json | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/ci/images/google-windows-geode-builder/packer.json b/ci/images/google-windows-geode-builder/packer.json
index c420a0b..6523b71 100644
--- a/ci/images/google-windows-geode-builder/packer.json
+++ b/ci/images/google-windows-geode-builder/packer.json
@@ -124,6 +124,9 @@
         "ps -Name java -ErrorAction ignore",
 
         "write-output '>>>>>>>>>> Final cleanup <<<<<<<<<<'",
+        "pushd geode",
+        ".\\gradlew.bat --no-daemon clean",
+        "popd",
         "rm -force -recurse geode"
       ]
     },