You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ad...@apache.org on 2022/10/19 11:55:10 UTC

[cassandra] branch cassandra-3.11 updated (d465ac2dc9 -> c7d665dcc7)

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

adelapena pushed a change to branch cassandra-3.11
in repository https://gitbox.apache.org/repos/asf/cassandra.git


    from d465ac2dc9 Merge branch 'cassandra-3.0' into cassandra-3.11
     new 2b511c5714 ninja-fix: Fix bashisms on .circleci/generate.sh
     new c7d665dcc7 Merge branch 'cassandra-3.0' into cassandra-3.11

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .circleci/generate.sh | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org


[cassandra] 01/01: Merge branch 'cassandra-3.0' into cassandra-3.11

Posted by ad...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

adelapena pushed a commit to branch cassandra-3.11
in repository https://gitbox.apache.org/repos/asf/cassandra.git

commit c7d665dcc7c06120c6c149a7b9fda27b8ea13b67
Merge: d465ac2dc9 2b511c5714
Author: Andrés de la Peña <a....@gmail.com>
AuthorDate: Wed Oct 19 12:48:49 2022 +0100

    Merge branch 'cassandra-3.0' into cassandra-3.11

 .circleci/generate.sh | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --cc .circleci/generate.sh
index 54db165eff,4ea520b786..135f909620
--- a/.circleci/generate.sh
+++ b/.circleci/generate.sh
@@@ -249,13 -244,10 +249,13 @@@ if (! (echo "$env_vars" | grep -q "REPE
    delete_job "utests_compression_repeat"
    delete_job "utests_system_keyspace_directory_repeat"
  fi
- if [[ $env_vars != *"REPEATED_UTESTS_LONG="* ]]; then
+ if (! (echo "$env_vars" | grep -q "REPEATED_UTESTS_LONG=")); then
    delete_job "utests_long_repeat"
  fi
- if [[ $env_vars != *"REPEATED_UTESTS_STRESS="* ]]; then
++if (! (echo "$env_vars" | grep -q "REPEATED_UTESTS_STRESS=")); then
 +  delete_job "utests_stress_repeat"
 +fi
- if [[ $env_vars != *"REPEATED_JVM_DTESTS="* ]]; then
+ if (! (echo "$env_vars" | grep -q "REPEATED_JVM_DTESTS=")); then
    delete_job "j8_jvm_dtests_repeat"
    delete_job "j8_jvm_dtests_vnode_repeat"
    delete_job "j11_jvm_dtests_repeat"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org