Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions vars/getFunctionalArgs.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Map call(Map kwargs = [:]) {
// Include any additional rpms required for the provider
if (launch_provider.contains('ucx')) {
result['stage_rpms'] = 'mercury-ucx'
} else {
result['stage_rpms'] = 'mercury-libfabric'
}
Comment on lines 24 to 28
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This type of logic should not be in pipeline-lib. It should be handled as a parameter or a script / data file in the DAOS job that is causing the stage to be run.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

totally agree with you


result['ftest_arg'] = [launch_nvme, launch_provider, launch_repeat].join(' ').trim()
Expand Down