Skip to content

Commit

Permalink
add xmx
Browse files Browse the repository at this point in the history
  • Loading branch information
ovcharenko-di committed Nov 20, 2024
1 parent 7248c85 commit c34ea20
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ class NativeEdtCliConverter implements IEdtCliEngine {
String workspaceLocation = "$env.WORKSPACE/$DesignerToEdtFormatTransformation.WORKSPACE"
def resultFile = "$env.WORKSPACE/$EdtValidate.RESULT_FILE"

def edtcliCommand = "1cedtcli -data \"$workspaceLocation\" -command validate --file \"$resultFile\" $projectList"
Logger.println("Версия EDT выше 2024.1.X, для валидации используется 1cedtcli")

def edtcliCommand = "1cedtcli -data \"$workspaceLocation\" -vmargs -Xmx8g -command validate --file \"$resultFile\" $projectList"
steps.catchError {
steps.cmd(edtcliCommand)
}
Expand Down

0 comments on commit c34ea20

Please sign in to comment.