Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C7E0B200D5C for ; Thu, 30 Nov 2017 13:13:59 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id C6993160BEA; Thu, 30 Nov 2017 12:13:59 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1C362160BF4 for ; Thu, 30 Nov 2017 13:13:58 +0100 (CET) Received: (qmail 39679 invoked by uid 500); 30 Nov 2017 12:13:58 -0000 Mailing-List: contact commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list commits@maven.apache.org Received: (qmail 39667 invoked by uid 99); 30 Nov 2017 12:13:58 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Nov 2017 12:13:58 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 5202A856EE; Thu, 30 Nov 2017 12:13:57 +0000 (UTC) Date: Thu, 30 Nov 2017 12:13:59 +0000 To: "commits@maven.apache.org" Subject: [maven-jenkins-lib] 02/02: Better report collection optimization MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: stephenc@apache.org In-Reply-To: <151204403707.30782.13490537831496020324@gitbox.apache.org> References: <151204403707.30782.13490537831496020324@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: maven-jenkins-lib X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Rev: a9ca17c5328ce56075c63686842e49d9843afff3 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20171130121357.5202A856EE@gitbox.apache.org> archived-at: Thu, 30 Nov 2017 12:13:59 -0000 This is an automated email from the ASF dual-hosted git repository. stephenc pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-jenkins-lib.git commit a9ca17c5328ce56075c63686842e49d9843afff3 Author: Stephen Connolly AuthorDate: Thu Nov 30 12:13:50 2017 +0000 Better report collection optimization --- vars/asfMavenTlpStdBuild.groovy | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/vars/asfMavenTlpStdBuild.groovy b/vars/asfMavenTlpStdBuild.groovy index bb61864..159a378 100644 --- a/vars/asfMavenTlpStdBuild.groovy +++ b/vars/asfMavenTlpStdBuild.groovy @@ -56,13 +56,20 @@ def call(Map params = [:]) { } } stage("Build ${stageId}") { - withMaven(jdk:jdkName, maven:mvnName, mavenLocalRepo:'.repository', options: [artifactsPublisher(disabled: !first), - findbugsPublisher(disabled: !first), openTasksPublisher(disabled: !first)]) { + dev withMavenOptions = [ + artifactsPublisher(disabled: !first), + junitPublisher, + findbugsPublisher(disabled: !first), + openTasksPublisher(disabled: !first), + dependenciesFingerprintPublisher, + invokerPublisher + ] + withMaven(jdk:jdkName, maven:mvnName, mavenLocalRepo:'.repository', options: withMavenOptions) { dir ('m') { if (isUnix()) { - sh "mvn clean verify -Dmaven.test.failure.ignore=true -Dfindbugs.failOnError=false -Dfindbugs.skip=${!first}" + sh "mvn clean verify -Dmaven.test.failure.ignore=true -Dfindbugs.failOnError=false -Dfindbugs.skip=${!first} -P+run-its" } else { - bat "mvn clean verify -Dmaven.test.failure.ignore=true -Dfindbugs.failOnError=false -Dfindbugs.skip=${!first}" + bat "mvn clean verify -Dmaven.test.failure.ignore=true -Dfindbugs.failOnError=false -Dfindbugs.skip=${!first} -P+run-its" } } } -- To stop receiving notification emails like this one, please contact "commits@maven.apache.org" .