Conversation
Summary of ChangesHello @psss, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request reactivates the Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request re-enables eln container building and testing. The changes in the Makefile correctly add the eln images back to the list of test images, and the commented-out code is cleanly removed. The change in tests/images.sh also re-enables the eln image for testing. I have one suggestion to improve consistency in the image variant used in tests/images.sh. Overall, the changes are straightforward and achieve the stated goal.
| $TEST_IMAGE_PREFIX/fedora/42/upstream:latest | ||
| $TEST_IMAGE_PREFIX/fedora/43/upstream:latest | ||
| $TEST_IMAGE_PREFIX/fedora/rawhide/upstream:latest | ||
| $TEST_IMAGE_PREFIX/fedora/eln:latest |
There was a problem hiding this comment.
For consistency with other Fedora and CentOS images in this list, which are upstream variants, consider using the upstream version of the eln image. Most other distribution images in TEST_CONTAINER_IMAGES use the upstream tag (e.g., fedora/42/upstream:latest, centos/stream10/upstream:latest). Using fedora/eln/upstream:latest here would align with that pattern.
This also makes the test suite more robust. If the upstream containerfile for eln is updated in the future to include more test-specific packages (as is common for other upstream images), this change will ensure those packages are included in the tests.
| $TEST_IMAGE_PREFIX/fedora/eln:latest | |
| $TEST_IMAGE_PREFIX/fedora/eln/upstream:latest |
There was a problem hiding this comment.
That, actually, makes sense. @happz, what do you think? Both container files are currently identical, so currently it has not effect, but in general, it makes sense to consistently test against pure/unmodified upstream versions of the container, hm?
Let's enable `eln` testing back when repos are in a good shape. This reverts commit a425155.
4b0ba30 to
c4fcdf9
Compare
Let's enable
elntesting back when repos are in a good shape.This reverts commit a425155 from #4552.