1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-08-25 20:09:25 +02:00

fix workspace path

This commit is contained in:
Dima
2024-07-25 10:44:21 +03:00
parent 206309622f
commit a63847df9d

View File

@@ -69,14 +69,13 @@ class ResultsTransformer implements Serializable {
steps.unstash(DesignerToEdtFormatTransformation.WORKSPACE_ZIP_STASH)
steps.unzip(DesignerToEdtFormatTransformation.WORKSPACE, DesignerToEdtFormatTransformation.WORKSPACE_ZIP)
workspace = DesignerToEdtFormatTransformation.WORKSPACE
workspace = FileUtils.getFilePath("$env.WORKSPACE/$DesignerToEdtFormatTransformation.WORKSPACE")
} else {
workspace = FileUtils.getFilePath("$env.WORKSPACE/$srcDir")
}
steps.cmd("edt-ripper parse $edtValidateFile $workspace $DesignerToEdtFormatTransformation.PROJECT_NAME $env.WORKSPACE/$RESULT_FILE")
//steps.cmd("edt-ripper publish $env.WORKSPACE/$RESULT_FILE")
}