You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2022/01/02 16:04:01 UTC

[hop] branch 2.0.0 updated: make build work

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

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


The following commit(s) were added to refs/heads/2.0.0 by this push:
     new 7914098  make build work
     new 3b859ba  Merge pull request #1251 from hansva/2.0.0
7914098 is described below

commit 7914098813aea0fed811bd739fd6016d5ad2e717
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Sun Jan 2 17:03:35 2022 +0100

    make build work
---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 8cfe651..2cd45df 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -103,7 +103,9 @@ pipeline {
                     deleteDir()
                 }
 
-                sh "mvn $MAVEN_PARAMS -DaltDeploymentRepository=snapshot-repo::default::file:./local-snapshots-dir clean deploy"
+                //sh "mvn $MAVEN_PARAMS -DaltDeploymentRepository=snapshot-repo::default::file:./local-snapshots-dir clean deploy"
+                //switch to clean install for now
+                sh "mvn $MAVEN_PARAMS clean install"
             }
             post {
                 always {
@@ -124,7 +126,6 @@ pipeline {
         }
         stage('Build Hop Docker Image') {
             when {
-                branch 'master'
                 anyOf { changeset pattern: "^(?!docs).*^(?!integration-tests).*" , comparator: "REGEXP" ; equals expected: true, actual: params.FORCE_BUILD }
             }
             steps {
@@ -141,7 +142,6 @@ pipeline {
         }
         stage('Build Hop Web Docker Image') {
             when {
-                branch 'master'
                 anyOf { changeset pattern: "^(?!docs).*^(?!integration-tests).*" , comparator: "REGEXP" ; equals expected: true, actual: params.FORCE_BUILD }
             }
             steps {