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 <[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" } }
