-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BXMSPROD-1231 UMB message body with project version #344
Conversation
@@ -72,7 +76,7 @@ pipeline { | |||
stage('Generate Properties Files') { | |||
steps { | |||
script { | |||
if(env.ALREADY_BUILT_PROJECTS?.trim()) { | |||
if(PME_EXECUTION_RESULT?.size()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if(PME_EXECUTION_RESULT?.size()) { | |
if(PME_EXECUTION_RESULT) { |
should be enough there or ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could be the case where map is empty and if(PME_EXECUTION_RESULT)
so the size will assure the PME_EXECUTION_RESULT will have real content
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well if map is empty, if(PME_EXECUTION_RESULT)
will consider false
@Ginxo any status there ? |
Co-authored-by: Tristan Radisson <[email protected]>
@radtriste this is out of date I will propose a new one (most probably today) |
closed in favor of https://github.com/kiegroup/kogito-pipelines/pull/682 |
https://issues.redhat.com/browse/BXMSPROD-1231
@radtriste just consider to change the QE side consuming the UMB message
from
builtProjects: ['projectA', 'projectB']
tobuiltProjects: {'projectA': 'versionX', 'projectB': 'versionY'}