You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/07/20 17:32:35 UTC

[maven] branch EOL updated: investigating archived core-it-suite

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

tibordigana pushed a commit to branch EOL
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/EOL by this push:
     new 662182d  investigating archived core-it-suite
662182d is described below

commit 662182db447b1f183238f47f3827a61c4ddf4bdb
Author: tibordigana <ti...@apache.org>
AuthorDate: Sat Jul 20 19:32:27 2019 +0200

    investigating archived core-it-suite
---
 Jenkinsfile | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index cb99fdc..4a2d8d8 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -104,12 +104,16 @@ for (String os in runITsOses) {
                               // Java 7u80 has TLS 1.2 disabled by default: need to explicitly enable
                               cmd = "${cmd} -Dhttps.protocols=TLSv1.2"
                             }
-                            
+
+                            try {
                             if (isUnix()) {
                                 sh "${cmd}"
                             } else {
                                 bat "${cmd}"
                             }
+                            } finally {
+                                zip(zipFile: "core-it-suite--${stageId}.zip", dir: 'core-it-suite', archive: true)
+                            }
                         }
                         deleteDir() // clean up after ourselves to reduce disk space
                     }