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:25:00 UTC

[incubator-hop] 18/22: HOP-2122

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 e610192ed4674f4555c7b9d5fb2ca7ce5ebe64b8
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Sun Dec 6 12:00:22 2020 +0100

    HOP-2122
    
    set HOP_JAVA_HOME in container
---
 Jenkinsfile.daily | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily
index 3e7cea3..afb12d9 100644
--- a/Jenkinsfile.daily
+++ b/Jenkinsfile.daily
@@ -111,7 +111,7 @@ pipeline {
                     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 .")
                     dockerImage.inside("-v $WORKSPACE/integration-tests:/files"){
                         echo 'Run tests'
-                        sh 'ls /files'
+                        sh 'export HOP_JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk'
                         sh 'cd /files/scripts && ./run-tests.sh'
                     }
                 }