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

mck pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cassandra-builds.git


The following commit(s) were added to refs/heads/master by this push:
     new 84268b8  ninja-fix: in cassandra-test.sh correctly detect which test 
targets are valid in the code
84268b8 is described below

commit 84268b8180fe5e7331efcc301df9c269c7b1babd
Author: mck <[email protected]>
AuthorDate: Fri Jul 17 19:51:23 2020 +0200

    ninja-fix: in cassandra-test.sh correctly detect which test targets are 
valid in the code
---
 build-scripts/cassandra-test.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build-scripts/cassandra-test.sh b/build-scripts/cassandra-test.sh
index aab819f..852aede 100755
--- a/build-scripts/cassandra-test.sh
+++ b/build-scripts/cassandra-test.sh
@@ -37,8 +37,8 @@ _main() {
       ant -projecthelp | grep -q " $target " || { echo "Skipping ${target}. It 
does not exist in ${version}"; exit 0; }
       ;;
     "test-cdc")
-      regx_version="2.2([0-9]+)$"
-      ! [[ $version =~ $version ]] || { echo "Skipping ${target}. It does not 
exist in ${version}"; exit 0; }
+      regx_version="(2.2|3.0).([0-9]+)$"
+      ! [[ $version =~ $regx_version ]] || { echo "Skipping ${target}. It does 
not exist in ${version}"; exit 0; }
       ;;
     *)
       ;;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to