You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by re...@apache.org on 2022/05/12 13:53:03 UTC

[uima-build-jenkins-shared-library] branch main updated: [UIMA-6451] Jenkins builds should run against multiple platforms

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

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-build-jenkins-shared-library.git


The following commit(s) were added to refs/heads/main by this push:
     new 9420b06  [UIMA-6451] Jenkins builds should run against multiple platforms
9420b06 is described below

commit 9420b0694777ec5431e9321a2fafe179d0ca1a09
Author: Richard Eckart de Castilho <re...@apache.org>
AuthorDate: Thu May 12 15:52:59 2022 +0200

    [UIMA-6451] Jenkins builds should run against multiple platforms
    
    - Custom analysis ID seems not to be picked up
---
 vars/defaultPipeline.groovy | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/vars/defaultPipeline.groovy b/vars/defaultPipeline.groovy
index 10843e0..ab774bc 100644
--- a/vars/defaultPipeline.groovy
+++ b/vars/defaultPipeline.groovy
@@ -150,7 +150,9 @@ def call(body) {
                   def mavenConsoleIssues = scanForIssues tool: mavenConsole()
                   def javaIssues = scanForIssues tool: java()
                   def javaDocIssues = scanForIssues tool: javaDoc()
-                  publishIssues id: "analysis-${PLATFORM}", issues: [mavenConsoleIssues, javaIssues, javaDocIssues]
+                  def analysisId = "analysis-${PLATFORM}"
+                  echo "analysisId: ${analysisId}"
+                  publishIssues id: analysisId, issues: [mavenConsoleIssues, javaIssues, javaDocIssues]
                 }
               }
             }