adds testing report to Jenkins

This commit is contained in:
Hyatt 2022-03-18 09:44:38 -05:00
parent 35b18b61ea
commit 66db7f2fa4
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

6
Jenkinsfile vendored
View File

@ -121,5 +121,11 @@ sonar.go.coverage.reportPaths=cover.out
)
}
}
stage('Submit Testing Report to Jenkins') {
catchError{
junit 'report.xml'
}
}
}
}