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 2020/11/06 07:04:28 UTC

[geode] branch develop updated: GEODE-8603: fix StressNew for support branches (#5717)

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new d1e003c  GEODE-8603: fix StressNew for support branches (#5717)
d1e003c is described below

commit d1e003c822463e20ce43109e6dc3f6f72a110586
Author: Owen Nichols <34...@users.noreply.github.com>
AuthorDate: Thu Nov 5 23:03:20 2020 -0800

    GEODE-8603: fix StressNew for support branches (#5717)
    
    * GEODE-8603: fix StressNew for support branches
    
    * all three test compile targets are needed
---
 ci/scripts/repeat-new-tests.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci/scripts/repeat-new-tests.sh b/ci/scripts/repeat-new-tests.sh
index dd2d220..90eb3ce 100755
--- a/ci/scripts/repeat-new-tests.sh
+++ b/ci/scripts/repeat-new-tests.sh
@@ -50,7 +50,7 @@ function save_classpath() {
   echo "Building and saving classpath"
   pushd geode >> /dev/null
     # Do this twice since devBuild still dumps a warning string to stdout.
-    ./gradlew --console=plain -q devBuild 2>/dev/null
+    ./gradlew --console=plain -q compileTestJava compileIntegrationTestJava compileDistributedTestJava devBuild 2>/dev/null
     ./gradlew --console=plain -q printTestClasspath 2>/dev/null >/tmp/classpath.txt
   popd >> /dev/null
 }