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


The following commit(s) were added to refs/heads/integration-tests by this push:
     new bf873b2  HOP-2212
bf873b2 is described below

commit bf873b25f0a445aa7166c1118bcd08d60db76b64
Author: Hans Van Akelyen <[email protected]>
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"
             }
         }

Reply via email to