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

porcelli pushed a commit to branch 8.40.x
in repository https://gitbox.apache.org/repos/asf/incubator-kie-drools.git


The following commit(s) were added to refs/heads/8.40.x by this push:
     new fdada88824 [8.40.x] Upgrade Commons Compress to version 1.24.0 (#5549) 
(#5560)
fdada88824 is described below

commit fdada888248320a4b77fc670478c7d6a26283863
Author: Jozef Marko <[email protected]>
AuthorDate: Tue Oct 24 14:52:45 2023 +0200

    [8.40.x] Upgrade Commons Compress to version 1.24.0 (#5549) (#5560)
    
    * Upgrade Commons Compress to version 1.24.0 (#5549)
    
    * Jenkinsfile.pr.8.40.x
    
    ---------
    
    Co-authored-by: Andrea Cosentino <[email protected]>
---
 .ci/jenkins/Jenkinsfile.pr.8.40.x | 49 +++++++++++++++++++++++++++++++++++++++
 build-parent/pom.xml              |  2 +-
 2 files changed, 50 insertions(+), 1 deletion(-)

diff --git a/.ci/jenkins/Jenkinsfile.pr.8.40.x 
b/.ci/jenkins/Jenkinsfile.pr.8.40.x
new file mode 100644
index 0000000000..2488ec7010
--- /dev/null
+++ b/.ci/jenkins/Jenkinsfile.pr.8.40.x
@@ -0,0 +1,49 @@
+@Library('jenkins-pipeline-shared-libraries')_
+
+pr_check_script = null
+
+pipeline {
+    agent {
+        label 'ubuntu'
+    }
+    options {
+        timestamps()
+        timeout(time: 480, unit: 'MINUTES')
+        disableConcurrentBuilds(abortPrevious: true)
+    }
+    environment {
+        BUILDCHAIN_PROJECT = 'apache/incubator-kie-drools'
+        BUILDCHAIN_CONFIG_REPO = 'incubator-kie-drools'
+        BUILDCHAIN_CONFIG_FILE_PATH = '.ci/buildchain-config-pr-cdb.yaml'
+
+        ENABLE_SONARCLOUD = 'false'
+        DROOLS_BUILD_MVN_OPTS = '-Prun-code-coverage'
+    }
+    stages {
+        stage('Initialize') {
+            steps {
+                script {
+                    // load `pr_check.groovy` file from kogito-pipelines:main
+                    dir('kogito-pipelines') {
+                        
checkout(githubscm.resolveRepository('incubator-kie-kogito-pipelines', 
'apache', 'main', false, 'ASF_Cloudbees_Jenkins_ci-builds'))
+                        pr_check_script = load 'dsl/scripts/pr_check.groovy'
+                    }
+                }
+            }
+        }
+        stage('PR check') {
+            steps {
+                script {
+                    dir('kogito-pipelines') {
+                        pr_check_script.launch()
+                    }
+                }
+            }
+        }
+    }
+    post {
+        cleanup {
+            cleanWs()
+        }
+    }
+}
diff --git a/build-parent/pom.xml b/build-parent/pom.xml
index 8bf21247b3..110132315d 100644
--- a/build-parent/pom.xml
+++ b/build-parent/pom.xml
@@ -153,7 +153,7 @@
     <version.plugin.annotations>3.6.0</version.plugin.annotations>
     <version.artifact.transfer>0.9.1</version.artifact.transfer>
     <version.shared.utils>3.3.4</version.shared.utils>
-    <version.common.compress>1.22</version.common.compress>
+    <version.common.compress>1.24.0</version.common.compress>
     <version.common.exec>1.3</version.common.exec>
     <!-- -->
     <!-- Jacoco plugin configurations -->


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to