You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by rh...@apache.org on 2021/11/30 17:32:20 UTC

[geode-benchmarks] branch develop updated: GEODE-9862: protect from jgit6.0.0 when building older Geodes for benchmarks

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new caa17e2  GEODE-9862: protect from jgit6.0.0 when building older Geodes for benchmarks
caa17e2 is described below

commit caa17e273b04eabf13b66a014042b73f97e457d0
Author: Sean Goller <sg...@pivotal.io>
AuthorDate: Tue Nov 30 09:29:00 2021 -0800

    GEODE-9862: protect from jgit6.0.0 when building older Geodes for benchmarks
---
 infrastructure/scripts/aws/run_tests.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/infrastructure/scripts/aws/run_tests.sh b/infrastructure/scripts/aws/run_tests.sh
index 9617658..64f1233 100755
--- a/infrastructure/scripts/aws/run_tests.sh
+++ b/infrastructure/scripts/aws/run_tests.sh
@@ -171,6 +171,7 @@ if [[ -z "${VERSION}" ]]; then
       || remoteShell rm -rf geode '&&' git clone "${REPO}" geode
   fi
   remoteShell "cd geode && git checkout \"${BRANCH}\" && [ \"\$(git rev-parse --abbrev-ref --symbolic-full-name HEAD)\" == \"HEAD\" ] || git reset --hard \"origin/${BRANCH}\""
+  remoteShell "cd geode && echo \"dependencies { runtimeOnly('org.eclipse.jgit:org.eclipse.jgit:5.13.0.202109080827-r') }\" >> ./buildSrc/build.gradle"
 
   set +e
   for i in {1..5}; do