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:04:19 UTC

[hop] branch master updated: HOP-4550: add sleep to avoid collecting open files

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 f93bf9e08b HOP-4550: add sleep to avoid collecting open files
     new 6879ca1792 Merge pull request #1795 from hansva/master
f93bf9e08b is described below

commit f93bf9e08bdb978efe36cf01ecfa8c4bf7536e0a
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Wed Nov 16 14:02:22 2022 +0100

    HOP-4550: add sleep to avoid collecting open files
---
 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 2205c2bc47..65af3c8d99 100644
--- a/Jenkinsfile.hop-web-selenium
+++ b/Jenkinsfile.hop-web-selenium
@@ -85,7 +85,8 @@ pipeline {
                 }
             post {
                 always {
-                    archiveArtifacts(artifacts: 'integration-tests/**/surefire-reports/images/*.png', fingerprint: true)
+                    sh "sleep 10"
+                    archiveArtifacts(artifacts: 'integration-tests/**/surefire-reports/images/*.png')
                     junit(testResults: 'integration-tests/**/surefire-reports/*.xml', allowEmptyResults: true)
                 }
             }