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/22 21:46:28 UTC

[geode] branch support/1.13 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.13
in repository https://gitbox.apache.org/repos/asf/geode.git


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

commit 0cd41073d0a5e40e5eea98a4d7ee534307b474aa
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)
---
 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"
       ]
     },