Skip to content

Commit

Permalink
Change env. var. name to RELEASE_BRANCH_NAME
Browse files Browse the repository at this point in the history
Skip-func-test-el9: false
Skip-func-test-leap15: false
Skip-func-hw-test: true
Skip-PR-comments: true
Test-tag: always_passes

Required-githooks: true

Signed-off-by: Brian J. Murrell <[email protected]>
  • Loading branch information
brianjmurrell committed Feb 5, 2024
1 parent 3d7e62a commit 6fd3bdc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -329,13 +329,13 @@ pipeline {
pragmasToEnv()
}
}
stage('Determine Landing Branch') {
stage('Determine Release Branch') {
steps {
script {
env.LANDING_BRANCH_NAME = sh(label: 'Determine landing branch name',
script: 'utils/rpms/packaging/get_landing_branch',
env.RELEASE_BRANCH_NAME = sh(label: 'Determine release branch name',
script: 'utils/rpms/packaging/get_release_branch',
returnStdout: true).trim()
echo 'Landing branch == ' + env.LANDING_BRANCH_NAME
echo 'Release branch == ' + env.RELEASE_BRANCH_NAME
}
}
}
Expand Down
File renamed without changes.

0 comments on commit 6fd3bdc

Please sign in to comment.