-
Notifications
You must be signed in to change notification settings - Fork 19
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
Upgrade CRI-O to 1.16.3 #514
base: master
Are you sure you want to change the base?
Conversation
485c6de
to
57ad3fb
Compare
name = "com_github_containers_conmon", | ||
commit = "1bddbf7051a973f4a4fecf06faa0c48e82f1e9e1", # 2.0.15 | ||
importpath = "github.com/containers/conmon", | ||
build_file_generation = "off", |
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.
If we're turning off build file generation, what's the point of having this be a go_repository rule instead of a git_repository rule?
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.
The git_repository rule seems to cause the patched-in symlink to no longer be a symlink for some reason, and I can't figure out why. In any case, I'll change the go_repository_alt back into a go_repository.
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.
Okay; we might want to do some digging on that at some point. If you don't want to do it now, can you file a low-priority issue?
57ad3fb
to
7337ddb
Compare
This involves: - Separating out the conmon build (following the upstream change) and giving it its own bazel build file patch. - Removing the conmon tests since they require additional build dependencies that we don't need. - Regenerating the CRI-O build file patch. - Updating the CRI-O upstream config file. - Updating deps.bzl.
7337ddb
to
cace7b1
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.
One nitpick and some issues to file for later. Very nice!
+ "src/*.c", | ||
+ "src/*.h", | ||
+ ]), | ||
+ # TODO: get these dynamically, not statically |
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.
I know these two TODOS were already here, but while we're looking at it, can we make sure we file issues to get back to them?
+ name = "conmon", | ||
+ srcs = glob([ | ||
+ "src/*.c", | ||
+ "src/*.h", |
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.
I think you're mixing tabs and spaces here.
See commit message. Unfortunately this does not seem to fix the memory leak, and the number of exit files still grows apparently unboundedly.
See #490 .
Checklist: