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

fix workspace path (experiment)

This commit is contained in:
Dima
2024-07-25 15:00:11 +03:00
parent aa4a9d6879
commit 4b6b3ebe5d

View File

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