-
Notifications
You must be signed in to change notification settings - Fork 20
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
Support for Java language #367
Conversation
Docker image for Java evaluator.
Hi, thanks, this looks good! Do you perhaps have some Java test project with the intended layout (e.g. a set of Java files, Maven configuration file, etc.), so that I could test it locally? |
Hi, thank you. You can use this example. |
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.
Apart from the mentioned nits, I have also pushed two changes that we need to make to properly support the Java pipeline.
I haven't tested tests, but build of the linked example project looks fine. The build log is quite… verbose, so it might be nice to hide it by default in a <details>
HTML tag, like is being done for Rust (like this). But it's just a nice-to-have thing.
221307f
to
a0a0900
Compare
This commit address comments from the pull request: -replace some packages installed in docker image (in Dockerfile) -fix errors and remove unused variables from the file entry.py
Thank you again for the review. I addresed all comments. |
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.
Thanks! I pushed one additional fix, since the code should have newlines and not <br />
, since it's displayed in <pre>
.
Docker image for Java evaluator.