You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2019/07/29 22:28:40 UTC

[maven] branch MAVEN_OPTS updated: archive available in core-it-suite-2.1-SNAPSHOT-tests.jar

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

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


The following commit(s) were added to refs/heads/MAVEN_OPTS by this push:
     new 81bc4fa  archive available in core-it-suite-2.1-SNAPSHOT-tests.jar
81bc4fa is described below

commit 81bc4fa2b11af0e08ee1c7540290ce1720a728f5
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Tue Jul 30 00:28:36 2019 +0200

    archive available in core-it-suite-2.1-SNAPSHOT-tests.jar
---
 Jenkinsfile | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 964cd2b..81254d9 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -112,7 +112,6 @@ for (String os in runITsOses) {
                                 bat "${cmd}"
                             }
                         }
-                        archiveDirs(taskContext.archives, "${WORK_DIR}/core-it-suite/target/test-classes/mng-4747")
                         deleteDir() // clean up after ourselves to reduce disk space
                     }
                 }
@@ -157,13 +156,3 @@ parallel(runITsTasks)
         jenkinsNotify()      
     }    
 }
-
-def archiveDirs(archives, stageDir) {
-  if (archives != null) {
-    dir(stageDir) {
-      archives.each { archivePrefix, pathToContent ->
-	    zip(zipFile: "${archivePrefix}-${stageDir}.zip", dir: pathToContent, archive: true)
-      }
-	}
-  }
-}