From ac4785c8300fd991b71ac7b0ddb7654b5ae126e6 Mon Sep 17 00:00:00 2001 From: Gary Shen Date: Fri, 10 May 2024 09:40:58 +0800 Subject: [PATCH] Add one more guardword for uploaded log (#586) Signed-off-by: Gary Shen --- ci/Jenkinsfile.premerge | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/Jenkinsfile.premerge b/ci/Jenkinsfile.premerge index a73620d6..44f321e2 100644 --- a/ci/Jenkinsfile.premerge +++ b/ci/Jenkinsfile.premerge @@ -1,6 +1,6 @@ #!/usr/local/env groovy /* - * Copyright (c) 2023, NVIDIA CORPORATION. + * Copyright (c) 2023-2024, NVIDIA CORPORATION. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -201,7 +201,7 @@ pipeline { githubHelper.updateCommitStatus("", "Success", GitHubCommitState.SUCCESS) } else { // upload log only in case of build failure - def guardWords = ["gitlab.*?\\.com", "urm.*?\\.com"] + def guardWords = ["gitlab.*?\\.com", "urm.*?\\.com", "sc-ipp-*"] guardWords.add("nvidia-smi(?s)(.*?)(?=git)") // hide GPU info guardWords.add("sc-ipp*") // hide cloud info githubHelper.uploadLogs(this, env.JOB_NAME, env.BUILD_NUMBER, null, guardWords)