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:24:48 UTC

[incubator-hop] 06/22: HOP-2212

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

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

commit fed3676d20344d1aed467b3b202bd3b98b70e9fe
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Sat Dec 5 23:08:43 2020 +0100

    HOP-2212
---
 Jenkinsfile.daily | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily
index 42cc198..35fa9a8 100644
--- a/Jenkinsfile.daily
+++ b/Jenkinsfile.daily
@@ -95,9 +95,16 @@ pipeline {
             }
         }
         stage('Run Integration Tests'){
+            agent {
+                docker { 
+                    image 'hop:latest' 
+                    args "-v $WORKSPACE/integration-tests:/files"
+                    }
+            }
             steps {
                 script {
                     echo 'Run tests'
+                    echo 'ls /files'
                 }
             }            
             post {
@@ -108,7 +115,6 @@ pipeline {
         }
         stage('Remove docker image'){
             steps {
-                sh "docker rmi $imagename:$BUILD_NUMBER"
                 sh "docker rmi $imagename:latest"
             }
         }