[cassandra-builds] branch trunk updated: ninja-fix: jvm-dtest-upgrade are not (yet) JDK11 compatible.

2020-10-21 Thread mck
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 6d556fe  ninja-fix: jvm-dtest-upgrade are not (yet) JDK11 compatible.
6d556fe is described below

commit 6d556fe8873296c0a48f747bd9855e462193252d
Author: Mick Semb Wever 
AuthorDate: Wed Oct 21 08:14:34 2020 +0200

ninja-fix: jvm-dtest-upgrade are not (yet) JDK11 compatible.

ASF CI unit tests on JDK11 (CASSANDRA-15944)
---
 jenkins-dsl/cassandra_job_dsl_seed.groovy | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/jenkins-dsl/cassandra_job_dsl_seed.groovy 
b/jenkins-dsl/cassandra_job_dsl_seed.groovy
index 607d612..ddd1284 100644
--- a/jenkins-dsl/cassandra_job_dsl_seed.groovy
+++ b/jenkins-dsl/cassandra_job_dsl_seed.groovy
@@ -470,7 +470,8 @@ cassandraBranches.each {
 disabled(false)
 using('Cassandra-template-test')
 axes {
-if (branchName == 'trunk') {
+// jvm-dtest-upgrade would require mixed JDK compilations 
to support JDK11+
+if (branchName == 'trunk' && targetName != 
'jvm-dtest-upgrade') {
 jdk(jdkLabel,'jdk_11_latest')
 } else {
 jdk(jdkLabel)


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



[cassandra-builds] branch trunk updated: ninja-fix: jvm-dtest-upgrade are not (yet) JDK11 compatible.

2020-10-20 Thread mck
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 dc057fb  ninja-fix: jvm-dtest-upgrade are not (yet) JDK11 compatible.
dc057fb is described below

commit dc057fb53b81ff866008f13d9037a5776f159ce5
Author: Mick Semb Wever 
AuthorDate: Wed Oct 21 07:40:35 2020 +0200

ninja-fix: jvm-dtest-upgrade are not (yet) JDK11 compatible.

ASF CI unit tests on JDK11 (CASSANDRA-15944)
---
 build-scripts/cassandra-test.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/build-scripts/cassandra-test.sh b/build-scripts/cassandra-test.sh
index ae2363f..709f8a7 100755
--- a/build-scripts/cassandra-test.sh
+++ b/build-scripts/cassandra-test.sh
@@ -40,6 +40,9 @@ _main() {
 if ! grep -q CASSANDRA_USE_JDK11 build.xml ; then
 echo "Skipping ${target}. JDK11 not supported against ${version}"
 exit 0
+elif [[ "${target}" == "jvm-dtest-upgrade" ]] ; then
+echo "Skipping JDK11 execution. Mixed JDK compilation required for 
${target}"
+exit 0
 fi
   fi
 


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