1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-02-08 14:29:15 +02:00

xml -> out

На выходе все же не xml
This commit is contained in:
Nikita Gryzlov 2020-04-28 18:05:11 +03:00
parent fca4fe4154
commit e4d9d58825
No known key found for this signature in database
GPG Key ID: C1EAE411FEF0BF2F
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ class EdtValidate implements Serializable {
def env = steps.env();
def resultFileRelative = 'build/out/edt-validate.xml'
def resultFileRelative = 'build/out/edt-validate.out'
def projectName = 'temp'
def workspaceDir = "$env.WORKSPACE/build/workspace"
def resultFile = "$env.WORKSPACE/$resultFileRelative"

View File

@ -37,7 +37,7 @@ class ResultsTransformer implements Serializable {
Logger.println("Конвертация результата EDT в Generic Issue")
def genericIssueRelative = "build/out/edt-generic-issue.json"
def edtValidateFile = "$env.WORKSPACE/build/out/edt-validate.xml"
def edtValidateFile = "$env.WORKSPACE/build/out/edt-validate.out"
def genericIssueFile = "$env.WORKSPACE/$genericIssueRelative"
steps.cmd("stebi convert $edtValidateFile $genericIssueFile $rootDir")