Skip to content
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

Add EL9 to Candlepin nightly #406

Merged
merged 1 commit into from
Jan 12, 2024
Merged
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
8 changes: 6 additions & 2 deletions theforeman.org/pipelines/vars/candlepin/nightly.groovy
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
def candlepin_version = 'nightly'
def candlepin_distros = ['el8']
def packaging_branch = 'rpm/develop'
def candlepin_distros = [
'el8',
'el9'
]
def pipelines = [
'candlepin': [
'centos8-stream'
'centos8-stream',
'centos9-stream'
Copy link
Member

Choose a reason for hiding this comment

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

This is currently unused (as we do not yet have CP tests), but would start failing once we do, or does this PR mean we also have el9 packages now, not only repos?

Copy link
Member

Choose a reason for hiding this comment

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

Copy link
Member Author

Choose a reason for hiding this comment

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

Means both -- I tested this before hand with nightly https://yum.theforeman.org/candlepin/nightly/el9/x86_64/

Copy link
Member Author

Choose a reason for hiding this comment

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

And working puppet module tests -- theforeman/puppet-candlepin#251

]
]