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

hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/main by this push:
     new b27b50b8fc just run all the tests in one go in jenkins (#7207)
b27b50b8fc is described below

commit b27b50b8fc8d5fc56c6b0e23e9bc6880e9ddc0c0
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Sun May 31 22:28:14 2026 +0200

    just run all the tests in one go in jenkins (#7207)
---
 Jenkinsfile | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index d6c8df3d5b..d604d787c0 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -103,27 +103,12 @@ pipeline {
                 dir("local-snapshots-dir/") {
                     deleteDir()
                 }
-
-                sh "mvn $MAVEN_PARAMS 
-DaltDeploymentRepository=snapshot-repo::default::file:./local-snapshots-dir 
clean deploy"
+                sh "xvfb-run -a --server-args='-screen 0 1280x1024x24' mvn 
$MAVEN_PARAMS 
-DaltDeploymentRepository=snapshot-repo::default::file:./local-snapshots-dir 
clean deploy"
             }
             post {
                 always {
                     junit(testResults: '**/surefire-reports/*.xml', 
allowEmptyResults: true)
                     junit(testResults: '**/failsafe-reports/*.xml', 
allowEmptyResults: true)
-                }
-            }
-        }
-        stage('UI Tests (SWTBot)') {
-            when {
-                 anyOf { changeset pattern: 
"^(?!docs).*^(?!integration-tests).*" , comparator: "REGEXP" ; equals expected: 
true, actual: params.FORCE_BUILD }
-                }
-            steps {
-                echo 'Running SWTBot UI tests under Xvfb'
-                sh "xvfb-run -a --server-args='-screen 0 1280x1024x24' mvn 
$MAVEN_PARAMS -Puitest -Dassemblies=false -Djacoco.skip=true test"
-            }
-            post {
-                always {
-                    junit(testResults: '**/surefire-reports/*.xml', 
allowEmptyResults: true)
                     archiveArtifacts(artifacts: '**/screenshots/**', 
allowEmptyArchive: true)
                 }
             }

Reply via email to