mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
GHPRB-derived env vars should be blank when missing, not the string 'null' (#45642)
This commit is contained in:
parent
334506a96a
commit
b8469350cf
1 changed files with 3 additions and 3 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
@ -169,9 +169,9 @@ def jobRunner(label, closure) {
|
|||
withEnv([
|
||||
"CI=true",
|
||||
"HOME=${env.JENKINS_HOME}",
|
||||
"PR_SOURCE_BRANCH=${env.ghprbSourceBranch}",
|
||||
"PR_TARGET_BRANCH=${env.ghprbTargetBranch}",
|
||||
"PR_AUTHOR=${env.ghprbPullAuthorLogin}",
|
||||
"PR_SOURCE_BRANCH=${env.ghprbSourceBranch ?: ''}",
|
||||
"PR_TARGET_BRANCH=${env.ghprbTargetBranch ?: ''}",
|
||||
"PR_AUTHOR=${env.ghprbPullAuthorLogin ?: ''}",
|
||||
"TEST_BROWSER_HEADLESS=1",
|
||||
"GIT_BRANCH=${scmVars.GIT_BRANCH}",
|
||||
]) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue