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 2022/11/16 14:37:02 UTC

[hop] branch master updated: HOP-4550: move image files before compressing

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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new c52da03675 HOP-4550: move image files before compressing
     new b9072c58ee Merge pull request #1797 from hansva/master
c52da03675 is described below

commit c52da036758dd04c114e4cef0a2604446f1db2e4
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Wed Nov 16 15:36:09 2022 +0100

    HOP-4550: move image files before compressing
---
 Jenkinsfile.hop-web-selenium | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile.hop-web-selenium b/Jenkinsfile.hop-web-selenium
index 4f36d2878d..28e4ba78c2 100644
--- a/Jenkinsfile.hop-web-selenium
+++ b/Jenkinsfile.hop-web-selenium
@@ -85,7 +85,8 @@ pipeline {
                 }
             post {
                 always {
-                    sh "mkdir -p tmp/images && cp integration-tests/hopweb/target/surefire-reports/images/*.png tmp/images/"
+                    sh "mkdir -p tmp/images"
+                    sh "cp integration-tests/hopweb/target/surefire-reports/images/* tmp/images/"
                     archiveArtifacts(artifacts: 'tmp/images/*.png')
                     junit(testResults: 'integration-tests/**/surefire-reports/*.xml', allowEmptyResults: true)
                 }