Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya committed Oct 7, 2024
1 parent 95aa91e commit cca0de4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/jenkins/CreateIntegTestMarkDownTable.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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 = """
Expand Down
2 changes: 0 additions & 2 deletions vars/updateBuildFailureIssues.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down
10 changes: 5 additions & 5 deletions vars/updateIntegTestFailureIssues.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit cca0de4

Please sign in to comment.