-
Notifications
You must be signed in to change notification settings - Fork 59
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
cargo: Replace compress-tools with zip crate #739
Conversation
5c1a881
to
542fa66
Compare
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.
LGTM, the only question is the test fails in Fedora
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.
Rust code changes LGTM.
At some point I should look again at building a fully static agent, but this will also require some changes to tss library to allow static linking.
Yes, it is currently failing due to the I'll extract the commit where I bump the |
542fa66
to
4cc20c8
Compare
The zip crate brings less external dependencies. With this change, we can remove libarchive from the dependencies. Fixes keylime#733 Signed-off-by: Anderson Toshiyuki Sasaki <[email protected]>
Signed-off-by: Anderson Toshiyuki Sasaki <[email protected]>
Also remove keylime user creation from non-fedora distributions and add wget to wolfi-based dockerfile Signed-off-by: Anderson Toshiyuki Sasaki <[email protected]>
Signed-off-by: Anderson Toshiyuki Sasaki <[email protected]>
Signed-off-by: Anderson Toshiyuki Sasaki <[email protected]>
4cc20c8
to
6dc2a2d
Compare
Codecov ReportAttention:
Additional details and impacted files
Flags with carried forward coverage won't be shown. Click here to find out more.
|
/packit retest-failed |
The proposed workaround in tests repo PR (RedHat-SP-Security/keylime-tests#550) was merged and the tests re-run passed, making this ready to merge |
Replace
compress-tools
withzip
crateRemove mentions of
libarchive
dependency fromREADME
, as well as from rpm spec files and dockerfilesRemove keylime user creation from non-fedora based dockerfiles.
Add wget installation to
wolfi
based image.Fixes #733
Fixes #671