diff --git a/src/jenkins/CreateIntegTestMarkDownTable.groovy b/src/jenkins/CreateIntegTestMarkDownTable.groovy index 1f71d227..9d325193 100644 --- a/src/jenkins/CreateIntegTestMarkDownTable.groovy +++ b/src/jenkins/CreateIntegTestMarkDownTable.groovy @@ -29,7 +29,7 @@ class CreateIntegTestMarkDownTable { |----------|--------------|--------------|----------------------|--------------| """ def tableRows = this.tableData.collect { row -> - "| ${row.platform} | ${row.distribution} | ${row.architecture} | ${row.test_report_manifest_yml} | ${row.integ_test_build_url}" + "| ${row.platform.toString()} | ${row.distribution.toString()} | ${row.architecture.toString()} | ${row.test_report_manifest_yml.toString()} | ${row.integ_test_build_url.toString()}" }.join("\n") def additionalInformation = """ diff --git a/vars/updateBuildFailureIssues.groovy b/vars/updateBuildFailureIssues.groovy index 94e8cc1f..39bf4b2a 100644 --- a/vars/updateBuildFailureIssues.groovy +++ b/vars/updateBuildFailureIssues.groovy @@ -44,8 +44,6 @@ void call(Map args = [:]) { failedComponents = failedComponents.unique() passedComponents = passedComponents.unique() - println('Failed components: '+ failedComponents) - println('Passed components: '+ passedComponents) for (component in inputManifest.components) { if (failedComponents.contains(component.name)) { diff --git a/vars/updateIntegTestFailureIssues.groovy b/vars/updateIntegTestFailureIssues.groovy index bc01f1c0..d6e53ee4 100644 --- a/vars/updateIntegTestFailureIssues.groovy +++ b/vars/updateIntegTestFailureIssues.groovy @@ -51,11 +51,11 @@ void call(Map args = [:]) { def totalHits = queryData.hits.hits.collect {it._source} totalHits.each { hit -> def rowData = [ - platform : hit.platform, - distribution: hit.distribution, - architecture: hit.architecture, - test_report_manifest_yml: hit.test_report_manifest_yml, - integ_test_build_url: hit.integ_test_build_url + platform : hit.platform.toString(), + distribution: hit.distribution.toString(), + architecture: hit.architecture.toString(), + test_report_manifest_yml: hit.test_report_manifest_yml.toString(), + integ_test_build_url: hit.integ_test_build_url.toString() ] testData << rowData }