-
Notifications
You must be signed in to change notification settings - Fork 311
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
Run arbitrary main in scala feature has been broken #1172
Comments
This seems to fail finding artifact after this change: |
@brendandouglas @jin @liucijus found that if we revert that one line the feature goes back to working. Would you be open to a PR reverting this? |
https://github.com/liucijus/bazel-scala-example can be used to reproduce the problem: |
Thanks, @jin! |
…ij PR import bazelbuild#1205) Fixes bazelbuild#1172 Before bazelbuild@98d0504#diff-c924e38cec968aa15f096048cb42b57fR185, the deployable jar was not filtered against any label. If the scala library is `//:foo`, the deployable is `//:foo_deploy.jar` according to the parsed bep output. Fix this by searching for `<label>_deploy.jar` instead. Closes bazelbuild#1205 PiperOrigin-RevId: 271252067
Hi,
The ability to right click any main in a scala_library and run it has been broken recently. Unfortunately it wasn't recently enough so it was before the fine grain commits and we don't know which commit did it.
The current situation is that the run configuration is created with a correct before task (I see from the console the right _deploy jar is built) but then the run configuration is somehow configured incorrectly.
I'd love to contribute an e2e for this to cover future regression but not sure where to start.
@jin @brendandouglas would you accept an e2e for this feature? If so can you share a few pointers?
Thanks!
The text was updated successfully, but these errors were encountered: