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 13:41:54 UTC

[hop] branch master updated: HOP-4550: move images 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 71e57714f5 HOP-4550: move images before compressing
     new 67447947f0 Merge pull request #1796 from hansva/master
71e57714f5 is described below

commit 71e57714f558d41566db0f1d761e3efef02f3c29
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Wed Nov 16 14:39:40 2022 +0100

    HOP-4550: move images before compressing
---
 .gitignore                   | 1 +
 Jenkinsfile.hop-web-selenium | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 3a1f5aa4c4..1fc5aaaf1f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -39,6 +39,7 @@ docs/resources
 docs/node_modules
 docs/.pnp
 docs/.pnp.js
+tmp/images
 
 integration-tests/spreadsheet/files/exel-part-001.xlsx
 
diff --git a/Jenkinsfile.hop-web-selenium b/Jenkinsfile.hop-web-selenium
index 65af3c8d99..4f36d2878d 100644
--- a/Jenkinsfile.hop-web-selenium
+++ b/Jenkinsfile.hop-web-selenium
@@ -85,8 +85,8 @@ pipeline {
                 }
             post {
                 always {
-                    sh "sleep 10"
-                    archiveArtifacts(artifacts: 'integration-tests/**/surefire-reports/images/*.png')
+                    sh "mkdir -p tmp/images && cp integration-tests/hopweb/target/surefire-reports/images/*.png tmp/images/"
+                    archiveArtifacts(artifacts: 'tmp/images/*.png')
                     junit(testResults: 'integration-tests/**/surefire-reports/*.xml', allowEmptyResults: true)
                 }
             }