This is an automated email from the ASF dual-hosted git repository.
mck pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/cassandra-java-driver.git
The following commit(s) were added to refs/heads/4.x by this push:
new eb57fd7d4 Build a public CI for Apache Cassandra Java Driver
eb57fd7d4 is described below
commit eb57fd7d46fb8b84655e66a3ca8e9ceef77b5164
Author: janehe <[email protected]>
AuthorDate: Wed Sep 18 08:49:37 2024 +0000
Build a public CI for Apache Cassandra Java Driver
patch by Siyao (Jane) He; reviewed by Mick Semb Wever for CASSANDRA-19832
---
Jenkinsfile-asf | 80 +++++++++++++++++++++++++++++++++++++
Jenkinsfile => Jenkinsfile-datastax | 0
ci/create-user.sh | 60 ++++++++++++++++++++++++++++
ci/run-tests.sh | 10 +++++
4 files changed, 150 insertions(+)
diff --git a/Jenkinsfile-asf b/Jenkinsfile-asf
new file mode 100644
index 000000000..a1be4bcd4
--- /dev/null
+++ b/Jenkinsfile-asf
@@ -0,0 +1,80 @@
+#!groovy
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+pipeline {
+ agent {
+ label 'cassandra-small'
+ }
+
+ triggers {
+ // schedules only run against release branches (i.e. 3.x, 4.x, 4.5.x,
etc.)
+ cron(branchPatternCron().matcher(env.BRANCH_NAME).matches() ?
'@weekly' : '')
+ }
+
+ stages {
+ stage('Matrix') {
+ matrix {
+ axes {
+ axis {
+ name 'TEST_JAVA_VERSION'
+ values '[email protected]', '[email protected]',
'openjdk@17'
+ }
+ axis {
+ name 'SERVER_VERSION'
+ values '3.11.17',
+ '4.0.13',
+ '5.0-beta1'
+ }
+ }
+ stages {
+ stage('Tests') {
+ agent {
+ label 'cassandra-medium'
+ }
+ steps {
+ script {
+ executeTests()
+ junit testResults:
'**/target/surefire-reports/TEST-*.xml', allowEmptyResults: true
+ junit testResults:
'**/target/failsafe-reports/TEST-*.xml', allowEmptyResults: true
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
+
+def executeTests() {
+ def testJavaMajorVersion = (TEST_JAVA_VERSION =~ /@(?:1\.)?(\d+)/)[0][1]
+ sh """
+ container_id=\$(docker run -td -e
TEST_JAVA_VERSION=${TEST_JAVA_VERSION} -e SERVER_VERSION=${SERVER_VERSION} -e
TEST_JAVA_MAJOR_VERSION=${testJavaMajorVersion} -v
\$(pwd):/home/docker/cassandra-java-driver
apache.jfrog.io/cassan-docker/apache/cassandra-java-driver-testing-ubuntu2204
'sleep 2h')
+ docker exec --user root \$container_id bash -c \"sudo bash
/home/docker/cassandra-java-driver/ci/create-user.sh docker \$(id -u) \$(id -g)
/home/docker/cassandra-java-driver\"
+ docker exec --user docker \$container_id
'./cassandra-java-driver/ci/run-tests.sh'
+ ( nohup docker stop \$container_id >/dev/null 2>/dev/null & )
+ """
+}
+
+// branch pattern for cron
+// should match 3.x, 4.x, 4.5.x, etc
+def branchPatternCron() {
+ ~'((\\d+(\\.[\\dx]+)+))'
+}
diff --git a/Jenkinsfile b/Jenkinsfile-datastax
similarity index 100%
rename from Jenkinsfile
rename to Jenkinsfile-datastax
diff --git a/ci/create-user.sh b/ci/create-user.sh
new file mode 100644
index 000000000..fb193df9a
--- /dev/null
+++ b/ci/create-user.sh
@@ -0,0 +1,60 @@
+#!/bin/bash
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+################################
+#
+# Prep
+#
+################################
+
+if [ "$1" == "-h" ]; then
+ echo "$0 [-h] <username> <uid> <gid>"
+ echo " this script is used internally by other scripts in the same
directory to create a user with the running host user's same uid and gid"
+ exit 1
+fi
+
+# arguments
+username=$1
+uid=$2
+gid=$3
+BUILD_HOME=$4
+
+################################
+#
+# Main
+#
+################################
+
+# disable git directory ownership checks
+su ${username} -c "git config --global safe.directory '*'"
+
+if grep "^ID=" /etc/os-release | grep -q 'debian\|ubuntu' ; then
+ deluser docker
+ adduser --quiet --disabled-login --no-create-home --uid $uid --gecos
${username} ${username}
+ groupmod --non-unique -g $gid $username
+ gpasswd -a ${username} sudo >/dev/null
+else
+ adduser --no-create-home --uid $uid ${username}
+fi
+
+# sudo priviledges
+echo "${username} ALL=(root) NOPASSWD:ALL" > /etc/sudoers.d/${username}
+chmod 0440 /etc/sudoers.d/${username}
+
+# proper permissions
+chown -R ${username}:${username} /home/docker
+chmod og+wx ${BUILD_HOME}
\ No newline at end of file
diff --git a/ci/run-tests.sh b/ci/run-tests.sh
new file mode 100755
index 000000000..02a8070e7
--- /dev/null
+++ b/ci/run-tests.sh
@@ -0,0 +1,10 @@
+#!/bin/bash -x
+
+. ~/.jabba/jabba.sh
+. ~/env.txt
+cd $(dirname "$(readlink -f "$0")")/..
+printenv | sort
+mvn -B -V install -DskipTests -Dmaven.javadoc.skip=true
+jabba use ${TEST_JAVA_VERSION}
+printenv | sort
+mvn -B -V verify -T 1 -Ptest-jdk-${TEST_JAVA_MAJOR_VERSION}
-DtestJavaHome=$(jabba which ${TEST_JAVA_VERSION})
-Dccm.version=${SERVER_VERSION} -Dccm.dse=false
-Dmaven.test.failure.ignore=true -Dmaven.javadoc.skip=true
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]