-
Notifications
You must be signed in to change notification settings - Fork 84
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
periodic: account for differences with Konflux built images #1445
Conversation
closes #1444 |
case rpm.SourceNEVRA != "": | ||
source = rpm.SourceNEVRA | ||
case rpm.SourceName != "": | ||
source = rpm.SourceName |
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.
is it possible for both to be populated?
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.
Yes, older manifests will have SourceNEVRA
populated, newer ones won't but they have the same information in SourceName
.
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.
interesting, ok
fada256
to
b937e04
Compare
For the RPM test we check the index report against the pyxis manifest for that image. The format of this manifest has recently changed when they started producing builds from Konflux, this change accounts for those changes. Signed-off-by: crozzy <joseph.crosland@gmail.com>
b937e04
to
ae50b58
Compare
case rpm.SourceNEVRA != "": | ||
source = rpm.SourceNEVRA | ||
case rpm.SourceName != "": | ||
source = rpm.SourceName |
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.
interesting, ok
/fast-forward |
For the RPM test we check the index report against the pyxis manifest for that image. The format of this manifest has recently changed when they started producing builds from Konflux, this change accounts for those changes.