Skip to content

Commit

Permalink
disable archive trace && add diag commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ovcharenko-di committed Nov 21, 2024
1 parent 6a425d1 commit f3f7b2b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@ class NativeEdtCliConverter implements IEdtCliEngine {
def edtcliCommand = "1cedtcli -v -data \"$workspaceLocation\" -vmargs -Xmx12g -Dfile.encoding=UTF-8 -Dsun.jnu.encoding=UTF8 -Dosgi.nl=ru -Duser.language=ru -command validate --file \"$resultFile\" $projectList"
steps.catchError {
steps.cmd(edtcliCommand)
steps.cmd("1cedtcli -v -data \"$workspaceLocation\" build --yes cf")
steps.cmd("1cedtcli -v -data \"$workspaceLocation\" platform-versions")
steps.cmd("1cedtcli -v -data \"$workspaceLocation\" install-platform support --version 8.3.21")
steps.cmd("1cedtcli -v -data \"$workspaceLocation\" platform-versions")
steps.cmd("1cedtcli -v -data \"$workspaceLocation\" project --details")
}

}
Expand Down
2 changes: 1 addition & 1 deletion src/ru/pulsar/jenkins/library/steps/EdtValidate.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class EdtValidate implements Serializable {
engine.edtValidate(steps, config, projectList)

steps.archiveArtifacts("$DesignerToEdtFormatTransformation.WORKSPACE/.metadata/.log")
steps.archiveArtifacts("$DesignerToEdtFormatTransformation.WORKSPACE/.metadata/trace.log")
// steps.archiveArtifacts("$DesignerToEdtFormatTransformation.WORKSPACE/.metadata/trace.log")
steps.archiveArtifacts(RESULT_FILE)
steps.stash(RESULT_STASH, RESULT_FILE)
}
Expand Down

0 comments on commit f3f7b2b

Please sign in to comment.