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 2020/12/06 15:55:39 UTC

[incubator-hop] branch master updated: HOP-2122 (#442)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 677a556  HOP-2122 (#442)
677a556 is described below

commit 677a556898e934e96262298d9ebc713f78b71e39
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Sun Dec 6 16:55:32 2020 +0100

    HOP-2122 (#442)
    
    Remove master checks as we are only checking out master in the build
---
 Jenkinsfile.daily | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily
index 8abcdf7..ccb7ab3 100644
--- a/Jenkinsfile.daily
+++ b/Jenkinsfile.daily
@@ -83,9 +83,6 @@ pipeline {
             }
         }
         stage('Build & Test') {
-            when {
-                branch 'master'
-            }
             steps {
                 echo 'Build & Test'
                 sh "mvn $MAVEN_PARAMS clean install"
@@ -95,9 +92,6 @@ pipeline {
             tools{
                 jdk 'jdk_11_latest'
             }
-            when {
-                branch 'master'
-            }
             steps {
                 echo 'Checking Code Quality on SonarCloud'
                 withCredentials([string(credentialsId: 'sonarcloud-key-apache-hop', variable: 'SONAR_TOKEN')]) {
@@ -106,9 +100,6 @@ pipeline {
             }
         }
         stage('Create Docker image & Run Tests'){
-            when {
-                branch 'master'
-            }
             steps {
                 script {
                     dockerImage = docker.build(imagename, "--build-arg JENKINS_USER=${jenkins_user} --build-arg JENKINS_UID=${jenkins_uid} --build-arg JENKINS_GROUP=${jenkins_group} --build-arg JENKINS_GID=${jenkins_gid} -f Dockerfile.unit-tests .")
@@ -125,9 +116,6 @@ pipeline {
             }
         }
         stage('Remove docker image'){
-            when {
-                branch 'master'
-            }
             steps {
                 sh "docker rmi $imagename:latest"
             }