apupier commented on code in PR #26133:
URL: https://github.com/apache/camel/pull/26133#discussion_r3935268460


##########
.github/workflows/pr-build-main.yml:
##########
@@ -78,6 +78,10 @@ jobs:
             # JDK 17 is kept for runtime compatibility testing.
             # Skip the enforcer which requires JDK 21+ (needed to compile JDK 
21-specific classes).
             maven_extra_args: '-Denforcer.phase=none'
+          - java: '27-ea'
+            # JDK 27 EA: early-access build to catch compatibility issues 
ahead of the Sep 2026 GA.
+            # Experimental — failures do not block PR merges.
+            experimental: true

Review Comment:
   given that we are lacking GitHub resources, we took the option to not add 
the jdk 27 on GitHub side



##########
Jenkinsfile.jdk27:
##########
@@ -0,0 +1,157 @@
+/*
+ * 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.
+ */
+def MAVEN_PARAMS = "-B -e -fae -V -Dnoassembly 
-Dsurefire.rerunFailingTestsCount=2 -Dfailsafe.rerunFailingTestsCount=1"
+def MAVEN_TEST_PARAMS = env.MAVEN_TEST_PARAMS ?: "-Dci.env.name=apache.org"
+def MAVEN_TEST_PARAMS_UBUNTU = env.MAVEN_TEST_PARAMS ?: 
"-Dci.env.name=apache.org"
+
+/*
+Below parameters are required for camel/core/camel-core module's test cases to 
pass on ppc64 and s390x
+- xpathExprGrpLimit: limits the number of groups an Xpath expression can 
contain
+- xpathExprOpLimit: limits the number of operators an Xpath expression can 
contain
+The Kafka parameter is because the apache/kafka image is not working on 
alternative OSes
+*/
+def MAVEN_TEST_PARAMS_ALT_ARCHS = "-Djdk.xml.xpathExprGrpLimit=100 
-Djdk.xml.xpathExprOpLimit=2000 -Dkafka.instance.type=local-strimzi-container"
+
+pipeline {
+
+    triggers {
+        // weekly
+        cron('H H * * H')
+    }
+
+    environment {
+        MAVEN_SKIP_RC = true
+        DEVELOCITY_ACCESS_KEY = credentials('CAMEL_DEVELOCITY_ACCESS_KEY')
+    }
+
+    options {
+        buildDiscarder(
+            logRotator(artifactNumToKeepStr: '5', numToKeepStr: '10')
+        )
+        disableConcurrentBuilds()
+        throttleJobProperty(
+          categories: ['camel'],
+          throttleEnabled: true,
+          throttleOption: 'category',
+          maxConcurrentPerNode: 1
+      )
+
+        // This is required if you want to clean before build
+        skipDefaultCheckout(true)
+    }
+
+    parameters {
+        booleanParam(name: 'VIRTUAL_THREAD', defaultValue: false, description: 
'Perform the build using virtual threads')
+        choice(name: 'PLATFORM_FILTER', choices: ['all', 'ppc64le', 's390x', 
'ubuntu-avx'], description: 'Run on specific platform')
+        choice(name: 'JDK_FILTER', choices: ['jdk_27_latest'], description: 
'Run on specific jdk')
+    }
+    agent none
+    stages {
+        stage('BuildAndTest') {
+            matrix {
+                agent {
+                    label "${PLATFORM}"
+                }
+                options {
+                    throttle(['camel'])
+                }
+                when { allOf {
+                    anyOf {
+                        expression { params.PLATFORM_FILTER == 'all' }
+                        expression { params.PLATFORM_FILTER == env.PLATFORM }
+                    }
+                    anyOf {
+                        expression { params.JDK_FILTER == 'all' }
+                        expression { params.JDK_FILTER == env.JDK_NAME }
+                    }
+                } }
+                axes {
+                    axis {
+                        name 'JDK_NAME'
+                        values 'jdk_27_latest'

Review Comment:
   not yet available on the Apaceh jenkins



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to