This is an automated email from the ASF dual-hosted git repository.
mck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-builds.git
The following commit(s) were added to refs/heads/trunk by this push:
new c662698 In contribulyze automate the all components grouping to be
all repositories
c662698 is described below
commit c66269868018b579ba7b025c29ee9bdc7926df18
Author: Mick Semb Wever <[email protected]>
AuthorDate: Sun Mar 30 08:31:04 2025 +0200
In contribulyze automate the all components grouping to be all repositories
---
contribulyze/contribulyze.sh | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/contribulyze/contribulyze.sh b/contribulyze/contribulyze.sh
index 509f900..ea898f6 100755
--- a/contribulyze/contribulyze.sh
+++ b/contribulyze/contribulyze.sh
@@ -13,10 +13,10 @@ mkdir -p /tmp/contribulyze-repos
mkdir -p /tmp/contribulyze-html
cd /tmp/contribulyze-repos
-repos=("https://github.com/apache/cassandra.git"
"https://github.com/apache/cassandra-dtest.git"
"https://github.com/apache/cassandra-builds.git"
"https://github.com/apache/cassandra-in-jvm-dtest-api.git"
"https://github.com/apache/cassandra-harry.git"
"https://github.com/apache/cassandra-website.git"
"https://github.com/apache/cassandra-java-driver.git"
"https://github.com/apache/cassandra-gocql-driver.git"
"https://github.com/datastax/python-driver.git"
"https://github.com/apache/cassa [...]
+repos=("https://github.com/apache/cassandra.git"
"https://github.com/apache/cassandra-dtest.git"
"https://github.com/apache/cassandra-builds.git"
"https://github.com/apache/cassandra-in-jvm-dtest-api.git"
"https://github.com/apache/cassandra-harry.git"
"https://github.com/apache/cassandra-website.git"
"https://github.com/apache/cassandra-java-driver.git"
"https://github.com/apache/cassandra-gocql-driver.git"
"https://github.com/apache/cassandra-sidecar.git"
"https://github.com/apache/cas [...]
# the different groups we want separate contribulyze reports on. note '..'
refers to everything.
-groups=('..' 'website_and_docs' 'build_and_tools' 'packaging_and_release'
'test_and_ci' 'cassandra_src' 'drivers' 'python-driver' 'cassandra-sidecar'
'cassandra-analytics' 'cassandra-accord')
+groups=('..' 'website_and_docs' 'build_and_tools' 'packaging_and_release'
'test_and_ci' 'cassandra_src' 'drivers' 'cassandra-sidecar'
'cassandra-analytics' 'cassandra-accord')
for repo in ${repos[*]} ; do
git clone --quiet ${repo}
@@ -59,11 +59,6 @@ for group in ${groups[*]} ; do
groupings=("cassandra-java-driver" "cassandra-gocql-driver")
;;
- "python-driver")
- groupings=("python-driver")
- continue # FIXME commit messages in python-driver do not follow the
"patch by …; reviewed by … for CASSANDRA-" precedence
- ;;
-
"cassandra-sidecar")
groupings=("cassandra-sidecar")
;;
@@ -77,7 +72,7 @@ for group in ${groups[*]} ; do
;;
*)
- groupings=("cassandra" "cassandra-dtest" "cassandra-in-jvm-dtest-api"
"cassandra-harry" "cassandra-builds" "cassandra-website"
"cassandra-java-driver" "cassandra-gocql-driver" "cassandra-sidecar"
"cassandra-analytics" "cassandra-accord")
+ groupings=($(for repo in "${repos[@]}"; do basename "${repo}" .git ;
done))
;;
esac
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]