diff --git a/Jenkinsfile b/Jenkinsfile index 11bbe2293e95..bc033aaa117d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,6 @@ core_logic: { node(NODE_LINUX_CPU) { ws('workspace/sanity-lint') { utils.init_git() - utils.publish_test_coverage() utils.docker_run('ubuntu_cpu', 'sanity_check', false) } } diff --git a/ci/Jenkinsfile_utils.groovy b/ci/Jenkinsfile_utils.groovy index 3fc74e4845c4..818eb62f7152 100644 --- a/ci/Jenkinsfile_utils.groovy +++ b/ci/Jenkinsfile_utils.groovy @@ -79,9 +79,6 @@ def publish_test_coverage() { // CodeCovs auto detection has trouble with our CIs PR validation due the merging strategy lastCommitMessage = sh (script: "git log -1 --pretty=%B", returnStdout: true) lastCommitMessage = lastCommitMessage.trim() - echo lastCommitMessage - echo lastCommitMessage.startsWith("Merge commit '").toString() - echo lastCommitMessage.endsWith("' into HEAD").toString() if (lastCommitMessage.startsWith("Merge commit '") && lastCommitMessage.endsWith("' into HEAD")) { // Merge commit applied by Jenkins, skip that commit GIT_COMMIT_HASH = sh (script: "git rev-parse @~", returnStdout: true)