Skip to content
Draft
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: 1 addition & 1 deletion vars/getDAOSPackages.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ String call(String distro, String next_version, String add_daos_pkgs) {

String pkgs
if (env.TEST_RPMS == 'true') {
pkgs = "daos{,-{client,tests,server,serialize}" + add_daos_pkgs + "}"
pkgs = "daos{,-{client,tests-internal,server,serialize}" + add_daos_pkgs + "}"
Comment on lines 28 to +29
Copy link
Collaborator

Choose a reason for hiding this comment

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

Is this creating an issue that once this is landed, CI will be broken until all DAOS branches and PRs are creating these packages?

Copy link
Contributor

Choose a reason for hiding this comment

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

The daos branches will need to be updated to produce this new package first.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes. There is a discussion in the PR starting at https://daosio.atlassian.net/browse/DAOS-10535?focusedCommentId=97808

} else {
pkgs = "daos{,-client}"
}
Expand Down