Skip to content

Commit

Permalink
GEODE-8880: skip Redis PR check in 1.13 and older support branches wh…
Browse files Browse the repository at this point in the history
…ich do not have it (apache#5964)
  • Loading branch information
onichols-pivotal authored Jan 27, 2021
1 parent dafd288 commit 61a5d2d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/scripts/execute_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ fi
. ${SCRIPTDIR}/shared_utilities.sh
is_source_from_pr_testable "geode" "$(get_geode_pr_exclusion_dirs)" || exit 0

if [ "${GRADLE_TASK}" = ":geode-redis:redisAPITest" ] && ! grep -q redisAPITest geode/geode-redis/build.gradle ; then
echo "redisAPITest is not applicable for 1.13 and earlier"
exit 0
fi

REPODIR=$(cd geode; git rev-parse --show-toplevel)

if [[ ${PARALLEL_GRADLE:-"true"} == "true" ]]; then
Expand Down

0 comments on commit 61a5d2d

Please sign in to comment.