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/27 15:11:32 UTC

[incubator-hop] branch HOP-2318 updated: HOP-2318: add quotes around commands

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

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


The following commit(s) were added to refs/heads/HOP-2318 by this push:
     new 9fadb33  HOP-2318: add quotes around commands
9fadb33 is described below

commit 9fadb331a82abb3a14343b77cbc8d336c0166e40
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Sun Dec 27 16:11:22 2020 +0100

    HOP-2318: add quotes around commands
---
 Jenkinsfile.daily | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily
index aa4acee..12c3815 100644
--- a/Jenkinsfile.daily
+++ b/Jenkinsfile.daily
@@ -97,14 +97,14 @@ pipeline {
         // }
         stage('Create Docker image & Run Tests'){
             steps {
-                    sh docker-compose -f 'docker/integration-tests/docker-compose-ci.yaml' up -d
-                    sh docker wait integration-tests_integration_test_1
-                    sh docker logs integration-tests_integration_test_1
+                    sh "docker-compose -f 'docker/integration-tests/docker-compose-ci.yaml' up -d"
+                    sh "docker wait integration-tests_integration_test_1"
+                    sh "docker logs integration-tests_integration_test_1"
                 }
             post {
                 always {
                     junit(testResults: 'integration-tests/**/surefire-reports/*.xml', allowEmptyResults: true)
-                    sh docker-compose -f 'docker/integration-tests/docker-compose-ci.yaml' down --rmi all
+                    sh "docker-compose -f 'docker/integration-tests/docker-compose-ci.yaml' down --rmi all"
                 }
             }
         }