diff --git a/JenkinsJobs/Releng/promoteBuild.jenkinsfile b/JenkinsJobs/Releng/promoteBuild.jenkinsfile index 6d51a2a76ff..eb04934ef42 100644 --- a/JenkinsJobs/Releng/promoteBuild.jenkinsfile +++ b/JenkinsJobs/Releng/promoteBuild.jenkinsfile @@ -76,7 +76,6 @@ pipeline { } else if (env.SIGNOFF_BUG ==~ '\\d+') { assignEnvVariable('SIGNOFF_BUG', "https://github.com/eclipse-platform/eclipse.platform.releng.aggregator/issues/${SIGNOFF_BUG}") } - assignEnvVariable('SIGNOFF_BUG_LABEL', env.SIGNOFF_BUG.replace('https://github.com/','').replace('/issues/','#')) } } } @@ -118,7 +117,7 @@ pipeline { # SIGNOFF_BUG should not be defined if there are no JUnit failures to investigate and explain if [[ -n "${SIGNOFF_BUG}" ]]; then - echo -e "
Any unit test failures below have been investigated and found to be test-related and do not affect the quality of the build.\\nSee the sign-off page ${SIGNOFF_BUG_LABEL} for details.
" > 'testNotes.html' + echo -e "Any unit test failures below have been investigated and found to be test-related and do not affect the quality of the build.\\nSee the sign-off page for details.
" > 'testNotes.html' fi ''' }