From f228d98db3581b9d7ca5bc645c395c7ac0fbb588 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Sat, 27 Jan 2024 08:27:27 +0100 Subject: [PATCH] docs(jenkins): Improve the `ORT_FAILURE_STATUS_CODE` documentation Signed-off-by: Sebastian Schuberth --- integrations/jenkins/Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integrations/jenkins/Jenkinsfile b/integrations/jenkins/Jenkinsfile index 1cb45ecc2567b..47982dc80dae8 100644 --- a/integrations/jenkins/Jenkinsfile +++ b/integrations/jenkins/Jenkinsfile @@ -28,7 +28,8 @@ final DOCKER_BUILD_ARGS = '--build-arg http_proxy=$http_proxy --build-arg https_ // Disable the entry point to work around https://issues.jenkins-ci.org/browse/JENKINS-51307. final DOCKER_RUN_ARGS = '-e http_proxy -e https_proxy --entrypoint=""' -// The status code ORT commands return for failures (like rule violations), not errors (like existing output files). +// The minimum status code ORT CLI commands return on exit for failures (like rule violations), not errors (like +// existing output files). final ORT_FAILURE_STATUS_CODE = 2 @NonCPS